:root {
  --ink: #241910;
  --paper: #f2d39a;
  --cream: #fff7e8;
  --line: #d7ad65;
  --rust: #b75a25;
  --rust-dark: #6e2d18;
  --sage: #8fa36a;
  --gold: #d89b38;
  --leaf: #466f3f;
  --leaf-dark: #173622;
  --charcoal: #120d09;
  --electric: #e8c76f;
  --shadow: 0 22px 70px rgba(53, 31, 16, 0.16);
  --photo-shadow: 0 22px 58px rgba(45, 29, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 155, 56, 0.2), transparent 28%),
    linear-gradient(180deg, #fff3d8 0%, #efcf91 46%, #bf6a2f 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(255, 247, 232, 0.14) 2px, transparent 3px) 0 0 / 32px 32px,
    radial-gradient(circle, rgba(70, 111, 63, 0.1) 2px, transparent 3px) 16px 16px / 32px 32px,
    linear-gradient(90deg, rgba(18, 13, 9, 0.045) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 84%, transparent);
}

body::after {
  content: "";
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf-dark), var(--leaf), var(--gold), var(--rust-dark));
  box-shadow: 0 0 18px rgba(216, 155, 56, 0.42);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(8, 11, 7, 0.78);
  color: #fff;
  backdrop-filter: blur(14px);
  transition: padding 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(8, 11, 7, 0.92);
  box-shadow: 0 12px 34px rgba(8, 11, 7, 0.28);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact,
.contact-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-icon {
  position: relative;
  display: inline-grid;
  width: 52px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 247, 232, 0.36);
  border-radius: 8px;
  color: #fff7e8;
  background:
    linear-gradient(135deg, rgba(70, 111, 63, 0.72), rgba(216, 155, 56, 0.28)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  appearance: none;
}

.contact-icon span {
  margin: 0;
  color: inherit;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.contact-icon:hover {
  border-color: rgba(216, 155, 56, 0.76);
  background:
    linear-gradient(135deg, var(--leaf-dark), var(--leaf) 36%, var(--gold)),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 32px rgba(216, 155, 56, 0.2);
  transform: translateY(-2px);
}

.header-help-link {
  position: relative;
  display: inline-grid;
  width: 52px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-help-link img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.header-help-link:hover {
  border-color: rgba(255, 247, 232, 0.38);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.language-toggle button {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.language-toggle button.is-active {
  color: var(--ink);
  background: var(--cream);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(246, 180, 90, 0.72);
  border-radius: 50%;
  background: #fff7e8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
}

.nav-marquee-track,
.nav-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
}

.nav-marquee-group[aria-hidden="true"] {
  display: none;
}

.nav-links a,
.nav-link-reserve {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-link-reserve {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-link-reserve:hover,
.nav-links a:hover {
  color: var(--cream);
}

.nav-action,
.primary-button,
.secondary-button,
.inline-form button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  touch-action: manipulation;
}

.nav-action,
.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.primary-button,
.inline-form button {
  position: relative;
  overflow: hidden;
  color: #fff8ed;
  background: linear-gradient(135deg, var(--leaf-dark), var(--leaf) 22%, var(--gold) 58%, var(--rust));
  box-shadow: 0 12px 28px rgba(169, 71, 20, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button::after,
.inline-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.32) 46%, transparent 58% 100%);
  transform: translateX(-120%);
}

.primary-button:hover,
.inline-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(141, 36, 25, 0.36);
}

.primary-button:hover,
.inline-form button:hover {
  background: linear-gradient(135deg, var(--leaf-dark), var(--leaf) 28%, var(--gold) 64%, var(--rust));
}

.primary-button:hover::after,
.inline-form button:hover::after {
  animation: button-shine 780ms ease;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 160px clamp(18px, 6vw, 80px) 70px clamp(14px, 4vw, 56px);
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: translateY(var(--scroll-shift, 0));
  transition: transform 80ms linear;
  background:
    linear-gradient(90deg, rgba(18, 13, 9, 0.82), rgba(18, 13, 9, 0.28) 50%, rgba(18, 13, 9, 0.82)),
    url("assets/capa-pc2.1.pejg.png?v=20260616-capa-pc"),
    linear-gradient(120deg, var(--charcoal), var(--leaf-dark) 28%, var(--gold) 64%, var(--rust));
  background-size: cover;
  background-position: center center;
}

.hero-media::before {
  content: none;
  position: absolute;
  inset: -24px;
  background: inherit;
  filter: blur(18px) saturate(1.08);
  transform: scale(1.08);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  transform: none;
  transition: transform 80ms linear;
}

.hero-overlay {
  background:
    radial-gradient(circle at 20% 42%, rgba(216, 155, 56, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(18, 13, 9, 0.68) 0%, rgba(18, 13, 9, 0.36) 30%, rgba(18, 13, 9, 0.08) 58%, rgba(18, 13, 9, 0) 78%),
    linear-gradient(0deg, rgba(18, 13, 9, 0.6), rgba(18, 13, 9, 0.12) 60%, rgba(18, 13, 9, 0.04));
}

.hero::before {
  content: none;
  position: absolute;
  z-index: 1;
  top: 22%;
  right: clamp(18px, 7vw, 96px);
  width: min(430px, 38vw);
  height: min(430px, 48vh);
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(246, 180, 90, 0.48), transparent) 0 16% / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(246, 180, 90, 0.38), transparent) 0 30% / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(246, 180, 90, 0.32), transparent) 0 44% / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(246, 180, 90, 0.28), transparent) 0 58% / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(246, 180, 90, 0.22), transparent) 0 72% / 100% 1px no-repeat;
  opacity: 0.72;
  transform: rotate(-8deg);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.music-notes {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.music-notes span {
  position: absolute;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 800;
  line-height: 1;
  opacity: 0.72;
  text-shadow:
    0 0 14px rgba(239, 156, 58, 0.42),
    0 8px 22px rgba(28, 15, 11, 0.4);
  animation: music-float 7s ease-in-out infinite;
}

.music-notes span:nth-child(1) {
  top: 18%;
  right: 18%;
}

.music-notes span:nth-child(2) {
  top: 30%;
  right: 7%;
  color: var(--electric);
  animation-delay: -1.8s;
}

.music-notes span:nth-child(3) {
  top: 43%;
  right: 18%;
  color: var(--cream);
  opacity: 0.46;
  animation-delay: -3.2s;
}

.music-notes span:nth-child(4) {
  top: 56%;
  right: 10%;
  animation-delay: -4.6s;
}

.hero::after {
  content: none;
  position: absolute;
  z-index: 1;
  left: clamp(18px, 6vw, 80px);
  right: clamp(18px, 6vw, 80px);
  bottom: 34px;
  height: 36px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(246, 180, 90, 0.62), transparent) 0 50% / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, rgba(255, 248, 237, 0.18) 0 2px, transparent 2px 18px);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  margin-top: clamp(70px, 10vh, 130px);
  transform: translateY(var(--content-shift, 0));
}

.hero.hero-artwork {
  display: block;
  height: auto;
  min-height: 0;
  margin-top: clamp(68px, 5.5vw, 88px);
  padding: 0;
  background: #120d09;
}

.hero.hero-artwork .hero-media {
  position: relative;
  inset: auto;
  transform: none;
  max-height: calc(75vw - 70px);
  overflow: hidden;
  background: #120d09;
}

.hero.hero-artwork .hero-media::before {
  content: none;
  z-index: 0;
  background:
    url("assets/capa-pc2.1.pejg.png?v=20260616-capa-pc") center / cover no-repeat,
    #120d09;
  filter: blur(20px) saturate(1.05) brightness(0.8);
  transform: scale(1.04);
  opacity: 0.88;
}

.hero.hero-artwork .hero-media picture {
  display: block;
  width: 100%;
  aspect-ratio: 1774 / 887;
}

.hero.hero-artwork .hero-media img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center top;
  transform: none;
}

.hero.hero-artwork .hero-overlay,
.hero.hero-artwork .music-notes {
  display: none;
}

.hero.hero-artwork .hero-content {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: auto;
  max-width: none;
  margin: 0;
  padding: clamp(24px, 3.4vw, 56px);
  pointer-events: none;
  transform: none;
}

.hero.hero-artwork .eyebrow {
  color: #f6c26d;
  margin: 0 0 8px;
  font-size: clamp(11px, 0.95vw, 15px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.hero.hero-artwork h1 {
  max-width: min(440px, 44vw);
  color: #fff1c8;
  font-size: clamp(38px, 4.2vw, 70px);
  line-height: 0.92;
  text-shadow:
    0 4px 0 rgba(141, 36, 25, 0.18),
    0 18px 38px rgba(0, 0, 0, 0.58),
    0 0 28px rgba(246, 194, 109, 0.26);
  animation: hero-title-glow 4.8s ease-in-out infinite;
}

.hero.hero-artwork h1 span {
  display: block;
}

.hero-duration {
  display: none;
  justify-items: center;
  width: min(250px, 100%);
  margin: clamp(16px, 2vw, 24px) auto 0;
  border: 1px solid rgba(255, 248, 237, 0.38);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff8ed;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 248, 237, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(70, 111, 63, 0.7), rgba(216, 155, 56, 0.72), rgba(141, 36, 25, 0.64));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 237, 0.22),
    0 18px 44px rgba(18, 13, 9, 0.34),
    0 0 32px rgba(246, 194, 109, 0.22);
}

.hero-duration-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 3.2vw, 42px);
  line-height: 0.9;
  white-space: nowrap;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.hero-duration-label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero.hero-artwork .hero-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(4px, 1.8vw, 24px);
  width: min(760px, calc(100% - 36px));
  max-width: none;
  margin: 0;
  border-left: 0;
  border-radius: 0;
  padding: clamp(12px, 1.4vw, 18px) clamp(16px, 2.2vw, 28px);
  color: #fff1c8;
  background: transparent;
  box-shadow: none;
  font-size: clamp(15px, 1.35vw, 21px);
  font-weight: 750;
  line-height: 1.42;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
  transform: translateX(-50%);
  backdrop-filter: none;
}

.hero-artwork-tags {
  display: grid;
  position: absolute;
  z-index: 2;
  left: clamp(18px, 4.8vw, 76px);
  top: auto;
  bottom: clamp(18px, 3vw, 42px);
  grid-template-columns: minmax(128px, 1fr) 40px minmax(172px, 1.34fr);
  grid-template-areas:
    "brazilian brazilian bossa"
    "samba and folk"
    "duration duration duration";
  align-items: center;
  width: min(540px, 43vw);
  gap: 7px;
  margin: 0;
  transform: none;
  pointer-events: none;
}

.hero-artwork-tags span:first-child {
  grid-area: brazilian;
  justify-self: stretch;
  width: 100%;
  margin: 0;
}

.hero-artwork-tags span:nth-child(3) {
  grid-area: and;
  width: auto;
  min-width: 40px;
  padding-inline: 0;
}

.hero-artwork-tags span:nth-child(2) {
  grid-area: samba;
}

.hero-artwork-tags span:nth-child(4) {
  grid-area: folk;
  min-width: 0;
}

.hero-artwork-tags span:nth-child(5) {
  grid-area: bossa;
}

.hero-artwork-tags span:nth-child(6) {
  grid-area: duration;
}

.hero-artwork-actions {
  position: absolute;
  z-index: 4;
  top: clamp(18px, 2.8vw, 40px);
  right: clamp(18px, 3.8vw, 56px);
  bottom: auto;
  display: grid;
  width: min(300px, 26vw);
  gap: 7px;
}

.hero-artwork-actions .primary-button,
.hero-artwork-actions .secondary-button {
  min-height: 38px;
  padding: 0 clamp(14px, 2vw, 22px);
  justify-content: center;
  font-size: clamp(13px, 1vw, 16px);
}

.hero.hero-artwork::before,
.hero.hero-artwork::after {
  content: none;
  display: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(38px, 5.6vw, 68px);
}

h2 {
  font-size: clamp(30px, 4.4vw, 50px);
}

.hero-copy {
  max-width: 44ch;
  margin: 18px 0 0;
  border-left: 3px solid rgba(246, 180, 90, 0.78);
  padding: 13px 0 13px 18px;
  color: rgba(255, 248, 237, 0.94);
  background: linear-gradient(90deg, rgba(28, 15, 11, 0.38), transparent);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 700;
  line-height: 1.48;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.performance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.performance-tags span {
  border: 1px solid rgba(246, 180, 90, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 248, 237, 0.92);
  background: rgba(28, 15, 11, 0.12);
  box-shadow: 0 8px 18px rgba(28, 15, 11, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
}

.section,
.ticket-section,
.media-section {
  padding: 82px clamp(18px, 6vw, 80px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.55vw, 24px);
}

.artists-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 247, 232, 0.52), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(70, 111, 63, 0.16), transparent 28%),
    linear-gradient(135deg, #f4d48d 0%, #f0c878 54%, #dca856 100%);
}

.artists-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("assets/pineapple-outline-pattern.svg");
  background-size: 118px 158px;
  background-position: 24px 20px;
  opacity: 0.14;
}

.artists-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(70, 111, 63, 0.14), transparent 18%, transparent 82%, rgba(141, 36, 25, 0.12)),
    linear-gradient(180deg, rgba(255, 247, 232, 0.28), transparent 48%, rgba(18, 13, 9, 0.08));
}

.artists-section .section-heading,
.artists-section .artist-grid {
  position: relative;
  z-index: 1;
}

.artists-section .artist-grid {
  width: min(1690px, 100%);
  margin: 0 auto;
}

.experience-section {
  position: relative;
  overflow: hidden;
  padding: 82px clamp(18px, 6vw, 80px);
  color: #fff;
  isolation: isolate;
  background: #120d09;
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: -4%;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(18, 13, 9, 0.9) 0%, rgba(18, 13, 9, 0.54) 46%, rgba(18, 13, 9, 0.72) 100%),
    linear-gradient(0deg, rgba(18, 13, 9, 0.86), rgba(18, 13, 9, 0.18) 54%, rgba(18, 13, 9, 0.6)),
    url("assets/experiencia-conexao-optimized-20260603.jpg?v=20260610-maos-unidas") center 36% / 92% auto no-repeat;
  filter: saturate(1.18) contrast(1.06);
  transform: scale(calc(1.01 + (var(--experience-reveal, 0) * 0.018)));
  transform-origin: center;
}

.experience-section::after {
  content: "";
  position: absolute;
  inset: clamp(18px, 4vw, 54px);
  pointer-events: none;
  z-index: 1;
  border: 1px solid rgba(255, 247, 232, 0.28);
  border-radius: 2px;
  background: transparent;
  box-shadow:
    inset 0 0 70px rgba(18, 13, 9, 0.28);
  opacity: calc(0.5 + (var(--experience-reveal, 0) * 0.24));
}

.experience-section .section-heading {
  position: relative;
  z-index: 2;
}

.experience-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.experience-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(255, 247, 232, 0.28);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.08), rgba(255, 248, 237, 0.025)),
    rgba(18, 13, 9, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 232, 0.18),
    0 18px 46px rgba(8, 11, 7, 0.24);
  backdrop-filter: blur(4px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.experience-grid article::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 155, 56, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(23, 54, 34, 0.58), rgba(110, 45, 24, 0.52));
  filter: saturate(1.18) contrast(1.04);
  opacity: 0.34;
  transform: scale(calc(1.02 + (var(--experience-reveal, 0) * 0.045)));
}

.experience-grid article::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 6px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%);
}

.experience-grid article:hover {
  border-color: rgba(246, 180, 90, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.09), rgba(255, 248, 237, 0.025)),
    rgba(18, 13, 9, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 232, 0.2),
    0 24px 64px rgba(8, 11, 7, 0.32);
  transform: translateY(-6px);
}

.experience-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.experience-grid h3 {
  margin-top: 34px;
  font-size: 24px;
}

.experience-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.artist-card {
  overflow: hidden;
  border: 1px solid rgba(183, 90, 37, 0.18);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 12px 34px rgba(53, 31, 16, 0.11);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.artist-card:hover {
  border-color: rgba(216, 155, 56, 0.5);
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 20px 50px rgba(24, 21, 18, 0.16);
}

.artist-card img {
  aspect-ratio: 16 / 10;
  height: clamp(210px, 13.2vw, 252px);
  object-fit: contain;
  object-position: center center;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 247, 232, 0.34), transparent 28%),
    linear-gradient(135deg, #2f4f32 0%, #d89b38 52%, #8d2419 100%);
  transition: transform 520ms ease, filter 520ms ease;
}

.artist-card:nth-child(2) img {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 247, 232, 0.32), transparent 28%),
    linear-gradient(135deg, #1c0f0b 0%, #466f3f 42%, #d89b38 100%);
}

.artist-card:nth-child(3) img {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 247, 232, 0.34), transparent 28%),
    linear-gradient(135deg, #efcf87 0%, #d89b38 48%, #466f3f 100%);
}

.artist-card:nth-child(4) img {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 247, 232, 0.34), transparent 28%),
    linear-gradient(135deg, #466f3f 0%, #ef9c3a 48%, #8d2419 100%);
}

.artist-card:hover img {
  filter: saturate(1.08) contrast(1.04);
}

.artist-card div {
  min-height: 172px;
  padding: 20px 26px 24px;
}

.artist-card h3 {
  font-size: clamp(22px, 1.45vw, 28px);
}

.artist-card p,
.ticket-copy p,
.check-list,
.event-details dd,
.verify-result {
  color: #65594e;
  font-size: 15px;
  line-height: 1.55;
}

.ticket-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background:
    radial-gradient(circle at 84% 24%, rgba(216, 155, 56, 0.14), transparent 28%),
    linear-gradient(145deg, #120d09 0%, #1b2d1e 52%, #5d2817 100%);
  color: #fff;
}

.ticket-copy p,
.ticket-copy .check-list {
  color: rgba(255, 255, 255, 0.76);
}

.ticket-subtitle,
.ticket-description,
.check-list li {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 15px !important;
  font-weight: 500;
  line-height: 1.55 !important;
}

.ticket-subtitle {
  max-width: 720px;
  margin-top: 18px;
}

.ticket-description {
  margin-top: 14px;
}

.ticket-subtitle::before,
.ticket-description::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--leaf), var(--gold), var(--rust));
  transform: rotate(45deg);
}

.verifier-section {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 58px;
  background:
    radial-gradient(circle at 84% 24%, rgba(216, 155, 56, 0.14), transparent 28%),
    linear-gradient(145deg, #120d09 0%, #1b2d1e 52%, #5d2817 100%);
}

.verifier-section .section-heading {
  margin: 0;
  color: #fff;
}

.verifier-section .section-heading h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
}

.verifier-section .section-heading .eyebrow {
  color: var(--gold);
}

.verifier-section .verifier {
  max-width: none;
}

.payment-verifier {
  grid-column: 1 / -1;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr) auto;
  width: min(100%, 1120px);
  margin-top: -18px;
  justify-self: center;
}

.payment-verifier-heading {
  grid-row: 1 / 3;
  align-self: center;
}

.payment-verifier-heading strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--leaf), var(--gold), var(--rust));
  transform: rotate(45deg);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 8px;
  background: rgba(18, 13, 9, 0.18);
}

.contact-strip strong {
  color: rgba(255, 247, 232, 0.9);
}

.contact-strip > span {
  color: rgba(255, 247, 232, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.contact-strip .contact-icons {
  margin-left: auto;
}

.contact-strip .contact-icon,
.footer-contact .contact-icon {
  width: 54px;
  height: 40px;
  border-color: rgba(216, 155, 56, 0.34);
}

.contact-strip a:not(.contact-icon),
.footer-contact a:not(.contact-icon) {
  color: rgba(255, 247, 232, 0.82);
  font-weight: 800;
  text-decoration: none;
}

.contact-strip a:not(.contact-icon):hover,
.footer-contact a:not(.contact-icon):hover {
  color: var(--gold);
}

.checkout-card,
.event-details,
.verifier {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.spain-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 86px clamp(18px, 6vw, 80px);
  color: #fff;
  perspective: 1180px;
  perspective-origin: 42% 28%;
  background:
    radial-gradient(circle at 18% 20%, rgba(116, 165, 210, 0.34), transparent 30%),
    radial-gradient(circle at 82% 30%, rgba(246, 180, 90, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(8, 15, 28, 0.96), rgba(18, 48, 76, 0.88) 48%, rgba(105, 61, 38, 0.68)),
    linear-gradient(135deg, #07111f 0%, #153a5c 54%, #8a552c 100%);
}

.spain-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18, 18, 19, 0.92), transparent 18%),
    linear-gradient(0deg, rgba(247, 242, 234, 0.08), transparent 22%);
}

.spain-section::after {
  content: none;
}

.spain-map {
  position: relative;
  z-index: 1;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(246, 180, 90, 0.62);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.18), transparent 42%),
    linear-gradient(160deg, #0d2440 0%, #1f5c86 42%, #d89b38 76%, #6e2d18 100%);
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.22);
  animation: warm-float 7s ease-in-out infinite;
}

button.spain-map {
  width: min(100%, 440px);
  justify-self: center;
  border: 1px solid rgba(246, 180, 90, 0.62);
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.live-video-card {
  animation: none;
  transform-origin: 50% 58%;
  transform-style: preserve-3d;
}

.live-video-card.is-scroll-managed {
  opacity: var(--live-card-opacity, 1);
  filter: blur(var(--live-card-blur, 0px)) saturate(calc(0.88 + (var(--live-card-progress, 1) * 0.2))) brightness(calc(0.82 + (var(--live-card-progress, 1) * 0.18)));
  transform:
    perspective(980px)
    translate3d(0, var(--live-card-y, 0px), var(--live-card-z, 0px))
    rotateX(var(--live-card-rotate-x, 0deg))
    rotateY(var(--live-card-rotate-y, 0deg))
    rotateZ(var(--live-card-rotate-z, 0deg))
    scale(var(--live-card-scale, 1));
  box-shadow:
    0 calc(22px + (var(--live-card-progress, 1) * 14px)) calc(48px + (var(--live-card-progress, 1) * 34px)) rgba(0, 0, 0, calc(0.18 + (var(--live-card-progress, 1) * 0.18))),
    0 0 calc(var(--live-card-progress, 1) * 26px) rgba(246, 180, 90, calc(var(--live-card-progress, 1) * 0.22));
  will-change: transform, opacity, filter;
}

button.live-video-card.is-scroll-managed:not(.is-live-card-ready) {
  pointer-events: none;
}

.live-video-card.is-live-card-ready:hover {
  filter: blur(0) saturate(1.14) brightness(1.06);
}

.spain-map video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(1.08) contrast(1.08) brightness(0.9);
  transform: scale(1.04);
}

.spain-map::before {
  content: none;
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 248, 237, 0.22), transparent) 50% 28% / 72% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 248, 237, 0.16), transparent) 50% 72% / 72% 1px no-repeat,
    rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(1.5px);
}

.spain-map::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 25, 45, 0.28), rgba(8, 16, 30, 0.48)),
    radial-gradient(circle at 22% 22%, rgba(190, 218, 240, 0.2), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(246, 180, 90, 0.22), transparent 30%);
  opacity: 0.78;
}

.spain-map span {
  position: relative;
  z-index: 2;
  color: rgba(255, 246, 232, 0.9);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 8.5vw, 104px);
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.58), 0 1px 0 rgba(0, 0, 0, 0.28);
}

.spain-map small {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22%;
  width: min(78%, 260px);
  transform: translateX(-50%);
  color: rgba(255, 247, 232, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.spain-map em {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 12%;
  display: inline-grid;
  min-height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 247, 232, 0.42);
  border-radius: 999px;
  padding: 0 14px;
  color: #fff7e8;
  background: rgba(18, 13, 9, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(6px);
}

.live-video-card::before {
  content: none;
  position: absolute;
  z-index: 1;
  top: 9%;
  left: 50%;
  width: 35%;
  aspect-ratio: 120 / 160;
  background: rgba(255, 224, 155, 0.9);
  -webkit-mask: url("assets/pineapple-outline-pattern.svg") center / contain no-repeat;
  mask: url("assets/pineapple-outline-pattern.svg") center / contain no-repeat;
  opacity: 0.2;
  filter: drop-shadow(0 0 18px rgba(239, 156, 58, 0.38));
  transform: translateX(-50%) scale(0.96);
  pointer-events: none;
  animation: pineapple-outline-glow 4.8s ease-in-out infinite;
}

.live-video-card:hover::before {
  opacity: 0;
  transform: none;
}

.spain-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.spain-copy {
  position: relative;
  z-index: 1;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .culture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.culture-grid div {
  min-height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.culture-grid div:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-5px);
}

.culture-grid strong,
.culture-grid span {
  display: block;
}

.culture-grid strong {
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}

.culture-grid span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.checkout-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.checkout-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.checkout-card-header .eyebrow {
  margin-bottom: 6px;
}

.checkout-card-header h3 {
  font-size: 22px;
}

.secure-pay-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(47, 125, 70, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--rust-dark);
  background: #ffe0b3;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.secure-pay-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0 5px rgba(200, 70, 38, 0.16);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
}

.service-options {
  display: grid;
  gap: 10px;
}

.booking-calendar {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(239, 156, 58, 0.13), transparent 58%),
    #fffaf2;
}

.booking-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-calendar-header button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #e8bc87;
  border-radius: 8px;
  color: var(--rust-dark);
  background: #fff;
  font-size: 22px;
  font-weight: 900;
}

.booking-calendar-header button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.booking-calendar-header strong {
  color: var(--ink);
  text-align: center;
}

.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-day {
  display: grid;
  min-height: 82px;
  gap: 2px;
  border: 1px solid rgba(141, 36, 25, 0.12);
  border-radius: 8px;
  padding: 8px 5px;
  color: var(--ink);
  background: #fff;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.calendar-day span,
.calendar-day small {
  color: #8a6a53;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-day strong {
  color: var(--rust-dark);
  font-size: 22px;
}

.calendar-day:not(:disabled):hover {
  border-color: rgba(200, 70, 38, 0.42);
  box-shadow: 0 12px 28px rgba(91, 41, 22, 0.12);
  transform: translateY(-2px);
}

.calendar-day.is-selected {
  border-color: var(--rust);
  color: #fff;
  background: linear-gradient(135deg, var(--rust-dark), var(--rust) 60%, var(--gold));
}

.calendar-day.is-selected span,
.calendar-day.is-selected strong,
.calendar-day.is-selected small {
  color: #fff;
}

.calendar-day.is-booked {
  color: #8a7770;
  background:
    repeating-linear-gradient(135deg, rgba(141, 36, 25, 0.08) 0 6px, transparent 6px 12px),
    #f2e5dc;
}

.calendar-day.is-booked strong,
.calendar-day.is-booked span,
.calendar-day.is-booked small {
  color: #8a7770;
}

.booking-calendar-note {
  margin: 0;
  color: #75685d;
  font-size: 13px;
  line-height: 1.45;
}

.selection-block {
  display: grid;
  gap: 8px;
}

.selection-label {
  margin: 0;
  color: #65594e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 8px;
}

.package-option {
  display: grid;
  min-height: 54px;
  gap: 3px;
  align-content: center;
  border: 1px solid #d8b07f;
  border-radius: 8px;
  padding: 8px 7px;
  color: var(--ink);
  background: #fffaf2;
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.package-option span,
.package-option strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.package-option span {
  font-size: 13px;
  font-weight: 900;
}

.package-option strong {
  color: var(--rust-dark);
  font-size: 12px;
}

.package-option:hover,
.package-option.is-selected {
  border-color: rgba(200, 70, 38, 0.56);
  background:
    linear-gradient(135deg, rgba(47, 125, 70, 0.22), rgba(239, 156, 58, 0.26)),
    #fff;
  box-shadow: 0 10px 22px rgba(91, 41, 22, 0.1);
  transform: translateY(-1px);
}

.addon-picker {
  display: grid;
  gap: 8px;
}

.addon-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(82px, auto);
  grid-template-areas:
    "title price"
    "details price";
  gap: 4px 14px;
  align-items: center;
  border: 1px solid #d8b07f;
  border-radius: 8px;
  min-height: 72px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffaf2;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.addon-option span,
.addon-option small {
  min-width: 0;
  overflow-wrap: normal;
}

.addon-option span {
  grid-area: title;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.addon-option small {
  grid-area: details;
  color: #75685d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.addon-option strong {
  grid-area: price;
  align-self: center;
  color: var(--rust-dark);
  font-size: 16px;
  text-align: right;
  white-space: nowrap;
}

.addon-option:hover,
.addon-option.is-selected {
  border-color: rgba(200, 70, 38, 0.56);
  background:
    linear-gradient(135deg, rgba(47, 125, 70, 0.18), rgba(239, 156, 58, 0.24)),
    #fff;
  box-shadow: 0 10px 22px rgba(91, 41, 22, 0.1);
  transform: translateY(-1px);
}

.service-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(110, 45, 24, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
}

.price-row > div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.price-row span {
  overflow-wrap: anywhere;
  color: #060403;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.service-detail {
  color: #75685d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.price-row strong {
  color: var(--rust-dark);
  font-size: 22px;
  text-align: right;
}

.service-secondary {
  justify-content: center;
  color: var(--ink);
  border-color: #d8b07f;
  background: #fff;
  box-shadow: none;
}

.split-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 14px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(183, 90, 37, 0.14);
  background:
    linear-gradient(135deg, rgba(216, 155, 56, 0.22), transparent 56%),
    #fff1cf;
}

.split-box strong {
  grid-row: span 2;
  font-size: 28px;
  text-align: right;
}

.split-box small {
  color: #75685d;
}

.split-box.muted {
  border-color: rgba(110, 45, 24, 0.12);
  background:
    linear-gradient(135deg, rgba(70, 111, 63, 0.1), transparent 56%),
    #fff6df;
}

.payment-preview-title {
  margin: 0;
  color: #65594e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-options-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 6px;
}

.payment-options-preview span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--rust-dark);
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.52), transparent),
    #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.full-width {
  width: 100%;
}

.verifier {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(239, 156, 58, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.92), rgba(255, 242, 213, 0.86)),
    #fff7e8;
}

.verifier.payment-verifier {
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr) auto;
}

.verify-form label,
.checkout-form label,
.payment-methods legend {
  display: block;
  margin-bottom: 8px;
  color: #4a4037;
  font-size: 14px;
  font-weight: 800;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.qr-validator {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.qr-scan-button {
  min-height: 46px;
  width: fit-content;
  white-space: nowrap;
  color: var(--ink);
  border-color: #dacbb9;
  background: #fff;
}

.qr-scanner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15110f;
  box-shadow: 0 16px 38px rgba(23, 24, 21, 0.16);
}

.qr-scanner video {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.qr-frame {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(58vw, 260px);
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow:
    0 0 0 999px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(239, 156, 58, 0.34);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.qr-scanner button {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(21, 17, 15, 0.78);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dacbb9;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
}

.verify-result {
  grid-column: 2 / -1;
  margin-top: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(110, 45, 24, 0.07);
}

.verify-result.success {
  color: #244f31;
  background: #e7f3e4;
}

.verify-result.error {
  color: #7b2719;
  background: #f8ded7;
}

.media-section {
  position: relative;
  overflow: hidden;
  padding: clamp(104px, 13vh, 148px) clamp(18px, 6vw, 80px) 104px;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(18, 13, 9, 0.94), rgba(45, 25, 15, 0.96) 42%, rgba(18, 13, 9, 0.98)),
    url("assets/pineapple-outline-pattern.svg") center / 220px repeat,
    var(--charcoal);
  isolation: isolate;
}

.media-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent, rgba(216, 155, 56, 0.22), transparent) 0 124px / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 247, 232, 0.14), transparent) 0 calc(100% - 76px) / 100% 1px no-repeat;
  opacity: 0.9;
}

.media-section .section-heading {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}

.media-section .section-heading h2 {
  color: var(--cream);
  font-size: clamp(46px, 7vw, 94px);
  line-height: 0.96;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.52);
}

.media-section .section-heading h2::after {
  content: "";
  display: block;
  width: min(240px, 48vw);
  height: 2px;
  margin: 28px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--sage), transparent);
}

.music-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vh, 124px) clamp(18px, 6vw, 80px) clamp(88px, 10vh, 116px);
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 20%, rgba(216, 155, 56, 0.14), transparent 28%),
    radial-gradient(circle at 84% 62%, rgba(70, 111, 63, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(18, 13, 9, 0.96), rgba(45, 25, 15, 0.95) 46%, rgba(18, 13, 9, 0.98)),
    url("assets/pineapple-outline-pattern.svg") center / 220px repeat,
    var(--charcoal);
  isolation: isolate;
}

.music-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(216, 155, 56, 0.2), transparent) 0 72px / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 247, 232, 0.12), transparent) 0 calc(100% - 72px) / 100% 1px no-repeat;
  opacity: 0.9;
}

.music-section .section-heading {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  margin: 0 auto clamp(30px, 4.2vw, 48px);
  text-align: center;
}

.music-section .section-heading .eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
}

.music-heading-kicker {
  margin: 0 auto 12px;
}

.music-section .section-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(40px, 5.8vw, 78px);
  line-height: 0.98;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.52);
}

.music-section .section-heading h2::after {
  content: "";
  display: block;
  width: min(210px, 44vw);
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--sage), transparent);
}

.music-layout {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(920px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.music-gateway {
  appearance: none;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  width: min(760px, 100%);
  min-height: clamp(172px, 22vw, 230px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.26);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  color: #fff7e8;
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.12), transparent 42%),
    radial-gradient(circle at 16% 20%, rgba(216, 155, 56, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(20, 35, 24, 0.94), rgba(91, 52, 28, 0.86));
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.music-gateway:hover {
  border-color: rgba(246, 180, 90, 0.72);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.36);
  transform: translateY(-4px);
}

.music-gateway::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 248, 237, 0.11), transparent) 50% 50% / 72% 1px no-repeat,
    url("assets/pineapple-outline-pattern.svg") center / 180px repeat;
  opacity: 0.12;
  pointer-events: none;
}

.music-gateway-icon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 7px;
  width: clamp(72px, 11vw, 104px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 247, 232, 0.28);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 248, 237, 0.08);
  box-shadow: inset 0 0 24px rgba(255, 248, 237, 0.08);
}

.music-gateway-icon span {
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.95), rgba(246, 180, 90, 0.64));
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.music-gateway-icon span:nth-child(1) {
  height: 46%;
}

.music-gateway-icon span:nth-child(2) {
  height: 74%;
}

.music-gateway-icon span:nth-child(3) {
  height: 58%;
}

.music-gateway-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.music-gateway-copy strong {
  color: #fff7e8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 6.4vw, 70px);
  line-height: 0.95;
}

.music-gateway-copy small {
  max-width: 450px;
  color: rgba(255, 247, 232, 0.78);
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.45;
}

.music-gateway-copy em {
  width: max-content;
  border: 1px solid rgba(246, 180, 90, 0.42);
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff7e8;
  background: rgba(18, 13, 9, 0.38);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.music-gateway-count {
  position: relative;
  z-index: 1;
  align-self: end;
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 247, 232, 0.86);
  background: rgba(18, 13, 9, 0.34);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.music-copy,
.music-card,
.music-empty {
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.14), rgba(216, 155, 56, 0.08)),
    rgba(255, 247, 232, 0.05);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.music-copy {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  padding: clamp(24px, 3.4vw, 34px);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 232, 0.16),
    0 22px 58px rgba(8, 11, 7, 0.28);
}

.music-copy::before {
  content: "";
  position: absolute;
  inset: -35% -12%;
  z-index: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(216, 155, 56, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(23, 54, 34, 0.36), rgba(110, 45, 24, 0.46));
  opacity: 0.64;
}

.music-copy::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(255, 247, 232, 0.12);
  border-radius: 6px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%);
}

.music-copy > * {
  position: relative;
  z-index: 1;
}

.music-panel-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(246, 180, 90, 0.38);
  border-radius: 999px;
  padding: 0 10px;
  color: #f6c26d;
  background: rgba(18, 13, 9, 0.42);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.music-copy h3 {
  margin: 16px 0 10px;
  color: #fff1c8;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
}

.music-copy p {
  margin: 0;
  color: rgba(255, 247, 232, 0.74);
  line-height: 1.58;
}

.music-list {
  position: relative;
  display: grid;
  margin: clamp(6px, 1.8vw, 14px) 0 0;
  gap: 14px;
}

.music-list[hidden] {
  display: none;
}

.music-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.music-card:hover {
  border-color: rgba(216, 155, 56, 0.72);
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.music-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 247, 232, 0.2);
  border-radius: 999px;
  color: #fff1c8;
  background:
    linear-gradient(135deg, rgba(70, 111, 63, 0.72), rgba(216, 155, 56, 0.28)),
    rgba(18, 13, 9, 0.54);
  font-weight: 900;
}

.music-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff1c8;
  font-size: clamp(16px, 2vw, 22px);
}

.music-card audio {
  width: 100%;
  height: 40px;
  filter: sepia(0.2) saturate(0.9);
}

.music-empty {
  margin: 0;
  padding: clamp(28px, 5vw, 54px);
  color: rgba(255, 247, 232, 0.72);
  text-align: center;
  font-weight: 800;
}

.music-empty strong,
.music-empty span {
  display: block;
}

.music-empty strong {
  margin-bottom: 8px;
  color: #fff1c8;
  font-size: clamp(20px, 3vw, 28px);
}

.music-empty span {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 247, 232, 0.72);
  font-weight: 700;
  line-height: 1.5;
}

.recordings-dialog {
  position: relative;
  width: min(840px, calc(100vw - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: #fff7e8;
  background: transparent;
}

.recordings-dialog[open] {
  display: grid;
}

.recordings-dialog::backdrop {
  background: rgba(11, 8, 5, 0.82);
  backdrop-filter: blur(8px);
}

.recordings-dialog-content {
  position: relative;
  overflow: auto;
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(20, 35, 24, 0.96), rgba(91, 52, 28, 0.9));
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
}

.recordings-dialog-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/pineapple-outline-pattern.svg") center / 170px repeat;
  opacity: 0.1;
  pointer-events: none;
}

.recordings-dialog-content > * {
  position: relative;
  z-index: 1;
}

.recordings-dialog-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.recordings-dialog-heading .eyebrow {
  margin: 0;
}

.recordings-dialog-heading h2 {
  margin: 0;
  color: #fff1c8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.94;
}

.recordings-dialog-heading p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 247, 232, 0.8);
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.55;
}

.recordings-list {
  margin-top: 0;
}

.recordings-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 247, 232, 0.32);
  border-radius: 999px;
  color: #fff7e8;
  background: rgba(18, 13, 9, 0.58);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 720px) {
  .music-gateway {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .music-gateway-copy em {
    justify-self: center;
  }

  .music-gateway-count {
    align-self: auto;
  }

  .recordings-dialog {
    width: min(calc(100vw - 20px), 840px);
    max-height: calc(100dvh - 20px);
  }
}

.pina-master-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vh, 86px) clamp(18px, 6vw, 80px);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(30, 57, 36, 0.98), rgba(91, 43, 25, 0.96) 58%, rgba(18, 13, 9, 0.98)),
    var(--charcoal);
  isolation: isolate;
}

.pina-master-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(216, 155, 56, 0.28), transparent) 50% 24px / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 247, 232, 0.16), transparent) 50% calc(100% - 24px) / 100% 1px no-repeat,
    url("assets/pineapple-outline-pattern.svg") center / 170px repeat;
  opacity: 0.48;
}

.pina-master-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.pina-master-panel .eyebrow {
  margin: 0;
}

.pina-master-panel h2 {
  margin: 0;
  color: #fff1c8;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 0.9;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.48);
}

.pina-master-space {
  appearance: none;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  width: min(760px, 100%);
  min-height: clamp(180px, 28vw, 360px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.26);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  color: #fff7e8;
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.12), transparent 42%),
    radial-gradient(circle at 16% 20%, rgba(216, 155, 56, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(18, 13, 9, 0.9), rgba(42, 77, 48, 0.84));
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pina-master-space:hover {
  border-color: rgba(246, 180, 90, 0.72);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.36);
  transform: translateY(-4px);
}

.pina-master-space::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 248, 237, 0.11), transparent) 50% 50% / 72% 1px no-repeat,
    url("assets/pineapple-outline-pattern.svg") center / 180px repeat;
  opacity: 0.12;
  pointer-events: none;
}

.pina-master-gateway-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(72px, 11vw, 104px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 247, 232, 0.28);
  border-radius: 8px;
  background: rgba(255, 248, 237, 0.08);
  box-shadow: inset 0 0 24px rgba(255, 248, 237, 0.08);
}

.pina-master-gateway-icon span {
  position: absolute;
  width: 44%;
  height: 58%;
  border: 1px solid rgba(255, 247, 232, 0.76);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 248, 237, 0.95), rgba(246, 180, 90, 0.58));
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.pina-master-gateway-icon span:nth-child(1) {
  transform: translateX(-16%) rotate(-8deg);
}

.pina-master-gateway-icon span:nth-child(2) {
  transform: translateX(18%) rotate(7deg);
}

.pina-master-gateway-icon span:nth-child(3) {
  width: 54%;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: rgba(29, 16, 10, 0.48);
  box-shadow: none;
  transform: translateY(18px);
}

.pina-master-gateway-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.pina-master-gateway-copy strong {
  color: #fff7e8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 0.95;
}

.pina-master-gateway-copy small {
  max-width: 440px;
  color: rgba(255, 247, 232, 0.78);
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.45;
}

.pina-master-gateway-copy em {
  width: max-content;
  border: 1px solid rgba(246, 180, 90, 0.42);
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff7e8;
  background: rgba(18, 13, 9, 0.38);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pina-master-gateway-count {
  position: relative;
  z-index: 1;
  align-self: end;
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 247, 232, 0.86);
  background: rgba(18, 13, 9, 0.34);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.pina-master-dialog {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: #fff7e8;
  background: transparent;
}

.pina-master-dialog[open] {
  display: grid;
}

.pina-master-dialog::backdrop {
  background: rgba(11, 8, 5, 0.82);
  backdrop-filter: blur(8px);
}

.pina-master-dialog-content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: 8px;
  padding: clamp(30px, 6vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(29, 16, 10, 0.96), rgba(42, 77, 48, 0.92));
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
}

.pina-master-dialog-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/pineapple-outline-pattern.svg") center / 170px repeat;
  opacity: 0.1;
  pointer-events: none;
}

.pina-master-dialog-content > * {
  position: relative;
  z-index: 1;
}

.pina-master-dialog-content .eyebrow {
  margin: 0 0 10px;
}

.pina-master-dialog-content h2 {
  margin: 0;
  color: #fff1c8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.94;
}

.pina-master-dialog-content p:last-child {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(255, 247, 232, 0.8);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.pina-master-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 247, 232, 0.32);
  border-radius: 999px;
  color: #fff7e8;
  background: rgba(18, 13, 9, 0.58);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 720px) {
  .pina-master-space {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pina-master-gateway-copy em {
    justify-self: center;
  }

  .pina-master-gateway-count {
    align-self: auto;
  }
}

.partnership-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vh, 132px) clamp(18px, 6vw, 80px);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(26, 47, 34, 0.96), rgba(83, 39, 24, 0.94) 54%, rgba(18, 13, 9, 0.98)),
    var(--charcoal);
  isolation: isolate;
}

.partnership-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(216, 155, 56, 0.24), transparent) 0 96px / 100% 1px no-repeat,
    url("assets/pineapple-outline-pattern.svg") center / 190px repeat;
  opacity: 0.5;
}

.partnership-section .section-heading,
.partnership-layout {
  position: relative;
  z-index: 2;
}

.partnership-section .section-heading {
  width: min(920px, 100%);
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}

.partnership-section .section-heading h2 {
  margin: 0;
  color: #fff1c8;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.48);
}

.partnership-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  align-items: stretch;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.partnership-single {
  display: block;
  width: min(780px, 100%);
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.14), rgba(216, 155, 56, 0.08)),
    rgba(255, 247, 232, 0.06);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

.partnership-copy,
.partnership-player {
  background: transparent;
  box-shadow: none;
}

.partnership-copy {
  padding: clamp(20px, 3vw, 34px);
}

.partnership-copy h3 {
  margin: 18px 0 12px;
  color: #fff1c8;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1;
}

.partnership-copy p {
  margin: 0;
  color: rgba(255, 247, 232, 0.76);
  font-size: 16px;
  line-height: 1.62;
}

.partnership-player {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
}

.partnership-feature-video {
  grid-template-columns: 64px minmax(150px, 220px) minmax(0, 1fr);
  width: 100%;
  border: 0;
  justify-content: center;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.partnership-feature-video:hover {
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(216, 155, 56, 0.42);
}

.partnership-player > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(255, 247, 232, 0.26);
  border-radius: 999px;
  color: #fff1c8;
  background:
    linear-gradient(135deg, rgba(70, 111, 63, 0.78), rgba(216, 155, 56, 0.32)),
    rgba(18, 13, 9, 0.58);
  font-size: 28px;
  font-weight: 900;
}

.partnership-feature-video img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.partnership-player strong {
  display: block;
  color: #fff1c8;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.05;
}

.partnership-player small {
  display: block;
  margin: 8px 0 14px;
  color: rgba(255, 247, 232, 0.72);
  font-weight: 800;
}

.partnership-player em {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(246, 180, 90, 0.72);
  border-radius: 999px;
  padding: 0 13px;
  color: #f6c26d;
  background: rgba(18, 13, 9, 0.42);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.partnership-player audio {
  width: 100%;
  height: 42px;
  filter: sepia(0.2) saturate(0.9);
}

.youtube-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 18px auto 0;
}

.youtube-card {
  grid-column: span 2;
}

.youtube-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.youtube-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.youtube-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 92px;
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: 8px;
  padding: 8px;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.12), rgba(216, 155, 56, 0.08)),
    rgba(18, 13, 9, 0.34);
  text-align: left;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.youtube-card:hover {
  border-color: rgba(216, 155, 56, 0.72);
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.youtube-card img {
  width: 104px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.youtube-card span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.youtube-card strong {
  overflow-wrap: anywhere;
  color: #fff1c8;
  font-size: 16px;
  line-height: 1.15;
}

.youtube-card small {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(246, 180, 90, 0.38);
  border-radius: 999px;
  padding: 5px 9px;
  color: #f6c26d;
  background: rgba(18, 13, 9, 0.42);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 20px;
}

.snap-gallery {
  position: relative;
  z-index: 2;
  height: auto;
  overflow: visible;
  scroll-behavior: smooth;
  scrollbar-width: auto;
}

.snap-slide {
  position: relative;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(18, 13, 9, 0.82), rgba(18, 13, 9, 0.22), rgba(18, 13, 9, 0.72)),
    var(--slide-image) center center / cover no-repeat,
    #120d09;
}

.snap-slide img {
  position: relative;
  z-index: 0;
  height: 100svh;
  object-fit: contain;
  object-position: center center;
  padding: clamp(70px, 9vh, 110px) clamp(14px, 3vw, 46px) clamp(28px, 5vh, 60px);
  filter: drop-shadow(0 22px 70px rgba(0, 0, 0, 0.52));
  transform: scale(1);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms ease;
}

.snap-slide::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(216, 155, 56, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(18, 13, 9, 0.88) 0%, rgba(18, 13, 9, 0.46) 40%, rgba(18, 13, 9, 0.12) 100%),
    linear-gradient(0deg, rgba(18, 13, 9, 0.84), transparent 48%, rgba(18, 13, 9, 0.22));
}

.snap-slide::after {
  content: none;
  position: absolute;
  z-index: 2;
  left: clamp(18px, 6vw, 80px);
  right: clamp(18px, 6vw, 80px);
  bottom: 34px;
  height: 28px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(246, 180, 90, 0.58), transparent) 0 50% / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, rgba(255, 248, 237, 0.16) 0 2px, transparent 2px 18px);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  opacity: 0.72;
}

.snap-slide-content {
  position: absolute;
  z-index: 4;
  left: clamp(18px, 6vw, 80px);
  bottom: clamp(78px, 12vh, 138px);
  width: min(640px, calc(100% - 36px));
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.snap-slide.is-text-ready .snap-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.snap-slide-content > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.snap-slide-content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.5);
}

.snap-slide-content p {
  max-width: 520px;
  margin: 18px 0 0;
  border-left: 3px solid rgba(246, 180, 90, 0.8);
  padding-left: 16px;
  color: rgba(255, 248, 237, 0.88);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.52);
}

.snap-slide:hover img {
  filter: saturate(1.08) contrast(1.04) drop-shadow(0 22px 70px rgba(0, 0, 0, 0.52));
  transform: scale(1.015);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.photo-gallery.is-four-pack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  grid-auto-flow: row;
  gap: 16px;
}

.photo-gallery figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #1d1916;
  box-shadow: var(--photo-shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.photo-gallery figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 66px rgba(91, 41, 22, 0.28);
}

.photo-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.7)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 42%);
}

.photo-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.photo-gallery figure:nth-child(4n + 1) {
  grid-row: span 2;
}

.photo-gallery figure:nth-child(6n + 2) {
  grid-column: span 2;
}

.photo-gallery figure:nth-child(5n + 3) {
  min-height: 300px;
}

.photo-gallery figure:nth-child(1) img,
.photo-gallery figure:nth-child(6) img,
.photo-gallery figure:nth-child(10) img {
  object-position: 50% 28%;
}

.photo-gallery figure:nth-child(2) img,
.photo-gallery figure:nth-child(3) img,
.photo-gallery figure:nth-child(8) img,
.photo-gallery figure:nth-child(11) img {
  object-position: 50% 38%;
}

.photo-gallery figure:nth-child(4) img,
.photo-gallery figure:nth-child(5) img,
.photo-gallery figure:nth-child(7) img,
.photo-gallery figure:nth-child(9) img,
.photo-gallery figure:nth-child(12) img {
  object-position: center center;
}

.photo-gallery figure:has(img[src*="galeria-18"]) {
  background:
    linear-gradient(135deg, rgba(70, 111, 63, 0.52), rgba(216, 155, 56, 0.56), rgba(183, 90, 37, 0.5)),
    #1d1916;
}

.photo-gallery figure:has(img[src*="galeria-18"]) img {
  object-fit: contain;
  object-position: center center;
}

.photo-gallery figure:hover img {
  transform: scale(1.04);
}

.photo-gallery figure:has(img[src*="galeria-18"]):hover img {
  transform: none;
}

.photo-gallery figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

.featured-photo {
  grid-column: span 2;
  min-height: 480px;
}

.photo-gallery.is-four-pack figure,
.photo-gallery.is-four-pack .featured-photo {
  min-height: 190px;
  grid-column: auto;
  grid-row: auto;
}

.media-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(174px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.media-gallery-expanded {
  grid-column: 1 / -1;
  display: grid;
  gap: clamp(16px, 2.6vw, 26px);
  width: 100%;
}

.media-gallery-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.1), transparent 44%),
    rgba(18, 13, 9, 0.28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.media-gallery-toolbar div {
  display: grid;
  gap: 6px;
}

.media-gallery-toolbar strong {
  color: #fff7e8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 0.98;
}

.media-gallery-toolbar small {
  max-width: 520px;
  color: rgba(255, 247, 232, 0.76);
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.45;
}

.media-gallery-toolbar button {
  flex: 0 0 auto;
  border: 1px solid rgba(246, 180, 90, 0.42);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff7e8;
  background: rgba(18, 13, 9, 0.4);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media-gallery-toolbar button:hover {
  border-color: rgba(246, 180, 90, 0.72);
  background: rgba(246, 180, 90, 0.18);
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(154px, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}

.gallery-gateway {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  width: min(760px, 100%);
  min-height: clamp(172px, 22vw, 230px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.26);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  color: #fff7e8;
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.12), transparent 42%),
    radial-gradient(circle at 16% 20%, rgba(216, 155, 56, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(29, 16, 10, 0.92), rgba(91, 52, 28, 0.88));
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gallery-gateway:hover {
  border-color: rgba(246, 180, 90, 0.72);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.36);
  transform: translateY(-4px);
}

.gallery-gateway::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 248, 237, 0.11), transparent) 50% 50% / 72% 1px no-repeat,
    url("assets/pineapple-outline-pattern.svg") center / 180px repeat;
  opacity: 0.12;
  pointer-events: none;
}

.gallery-gateway-icon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  width: clamp(72px, 11vw, 104px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 247, 232, 0.28);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 248, 237, 0.08);
  box-shadow: inset 0 0 24px rgba(255, 248, 237, 0.08);
}

.gallery-gateway-icon span {
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.95), rgba(246, 180, 90, 0.64));
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.gallery-gateway-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.gallery-gateway-copy strong {
  color: #fff7e8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.92;
}

.gallery-gateway-copy small {
  max-width: 420px;
  color: rgba(255, 247, 232, 0.78);
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.45;
}

.gallery-gateway-copy em {
  width: max-content;
  border: 1px solid rgba(246, 180, 90, 0.42);
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff7e8;
  background: rgba(18, 13, 9, 0.38);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-gateway-count {
  position: relative;
  z-index: 1;
  align-self: end;
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 247, 232, 0.86);
  background: rgba(18, 13, 9, 0.34);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .gallery-gateway {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .gallery-gateway-copy em {
    justify-self: center;
  }

  .gallery-gateway-count {
    align-self: auto;
  }

  .media-gallery-toolbar {
    align-items: start;
    flex-direction: column;
  }

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

.media-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: 8px;
  padding: 6px;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.14), rgba(216, 155, 56, 0.08)),
    rgba(255, 247, 232, 0.06);
  color: var(--cream);
  cursor: pointer;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.media-tile:hover {
  border-color: rgba(216, 155, 56, 0.72);
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.media-tile img,
.media-tile video {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 360ms ease, filter 360ms ease;
}

.media-tile video {
  background:
    radial-gradient(circle at 52% 38%, rgba(246, 180, 90, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(70, 111, 63, 0.72), rgba(216, 155, 56, 0.28) 52%, rgba(110, 45, 24, 0.76));
}

.media-tile video:not(.is-ready) {
  filter: saturate(0.9) contrast(1.02) blur(0.2px);
}

.media-tile:hover img,
.media-tile:hover video {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 5px;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.58)),
    linear-gradient(135deg, rgba(216, 155, 56, 0.08), transparent 44%);
  pointer-events: none;
}

.media-tile > span:not(.media-play-badge) {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  min-width: 38px;
  justify-content: center;
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--cream);
  background: rgba(18, 13, 9, 0.68);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.media-play-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(246, 180, 90, 0.9);
  color: #1a120d;
  font-size: 15px;
  line-height: 1;
}

.media-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(76px, 10dvh, 104px) clamp(62px, 8vw, 104px) clamp(58px, 8dvh, 92px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: rgba(18, 13, 9, 0.16);
  box-sizing: border-box;
  color: #fff8ed;
  touch-action: pan-y;
}

.media-dialog[open] {
  display: grid;
  place-items: center;
}

.media-dialog::backdrop {
  background:
    linear-gradient(180deg, rgba(62, 35, 20, 0.9), rgba(132, 83, 42, 0.84)),
    url("assets/pineapple-outline-pattern.svg") center / 180px repeat;
  backdrop-filter: none;
}

.media-dialog-frame {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  touch-action: pan-y;
}

.media-dialog-frame img,
.media-dialog-frame video {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1120px, calc(100vw - 148px));
  max-height: calc(100dvh - 164px);
  border-radius: 8px;
  background: transparent;
  object-fit: contain;
  image-rendering: auto;
  box-shadow: 0 22px 68px rgba(18, 13, 9, 0.34);
  touch-action: pan-y;
  user-select: none;
}

.media-dialog-frame img {
  filter: brightness(1.1) contrast(1.02) saturate(1.03);
}

.media-dialog-close {
  position: fixed;
  z-index: 4;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 248, 237, 0.26);
  border-radius: 999px;
  background: rgba(18, 13, 9, 0.78);
  color: #fff8ed;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.media-dialog-nav {
  position: fixed;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 52px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 999px;
  color: #fff8ed;
  background: rgba(18, 13, 9, 0.68);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.media-dialog-prev {
  left: max(16px, env(safe-area-inset-left));
}

.media-dialog-next {
  right: max(16px, env(safe-area-inset-right));
}

.media-dialog-close:hover,
.media-dialog-nav:hover {
  border-color: rgba(246, 180, 90, 0.72);
  background: rgba(42, 25, 16, 0.84);
}

.media-dialog-count {
  position: fixed;
  z-index: 4;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 248, 237, 0.88);
  background: rgba(18, 13, 9, 0.68);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

@media (max-width: 700px) {
  .media-dialog {
    padding: 72px 12px 76px;
  }

  .media-dialog-frame img,
  .media-dialog-frame video {
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 158px);
  }

  .media-dialog-close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .media-dialog-nav {
    width: 44px;
    height: 54px;
    font-size: 40px;
  }

  .media-dialog-prev {
    left: max(8px, env(safe-area-inset-left));
  }

  .media-dialog-next {
    right: max(8px, env(safe-area-inset-right));
  }

  .media-dialog-count {
    bottom: max(14px, env(safe-area-inset-bottom));
    padding: 7px 12px;
    font-size: 11px;
  }
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 820ms ease,
    filter 820ms ease,
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.hero-content .reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(28px);
}

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

.media-section.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(42px) scale(0.985);
}

.media-section.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.hero-content .reveal:nth-child(2) {
  transition-delay: 120ms;
}

.hero-content .reveal:nth-child(3) {
  transition-delay: 220ms;
}

.reveal.is-visible .artist-card,
.reveal.is-visible .culture-grid div,
.reveal.is-visible .experience-grid article,
.reveal.is-visible .photo-gallery figure {
  animation: rise-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal.is-visible .section-heading,
.reveal.is-visible .ticket-copy,
.reveal.is-visible .checkout-card,
.reveal.is-visible .music-gateway,
.reveal.is-visible .pina-master-space,
.reveal.is-visible .gallery-gateway,
.reveal.is-visible .partnership-player,
.reveal.is-visible .youtube-card {
  animation: scroll-lift-in 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal.is-visible .checkout-card,
.reveal.is-visible .pina-master-space,
.reveal.is-visible .gallery-gateway {
  animation-delay: 110ms;
}

.reveal.is-visible .youtube-card:nth-child(2) {
  animation-delay: 80ms;
}

.reveal.is-visible .youtube-card:nth-child(3) {
  animation-delay: 140ms;
}

.reveal.is-visible .youtube-card:nth-child(4) {
  animation-delay: 200ms;
}

.reveal.is-visible .youtube-card:nth-child(5) {
  animation-delay: 260ms;
}

.reveal.is-visible .artist-card:nth-child(2),
.reveal.is-visible .culture-grid div:nth-child(2),
.reveal.is-visible .experience-grid article:nth-child(2),
.reveal.is-visible .photo-gallery figure:nth-child(2) {
  animation-delay: 90ms;
}

.reveal.is-visible .artist-card:nth-child(3),
.reveal.is-visible .culture-grid div:nth-child(3),
.reveal.is-visible .experience-grid article:nth-child(3),
.reveal.is-visible .photo-gallery figure:nth-child(3) {
  animation-delay: 180ms;
}

.event-details {
  padding: 24px;
}

.event-details dl {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
}

.event-details dt {
  font-weight: 800;
}

.event-details dd {
  margin: 4px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(90deg, rgba(239, 156, 58, 0.16), transparent 36%),
    var(--charcoal);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
}

.site-footer span {
  margin-top: 4px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-left: auto;
  text-align: right;
  justify-items: end;
}

.footer-contact-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-help {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-help span {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
  max-width: 120px;
  line-height: 1.25;
}

.footer-help img {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(0, 174, 255, 0.32);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(0, 174, 255, 0.14);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.footer-help:hover img {
  box-shadow: 0 0 34px rgba(0, 174, 255, 0.26);
  transform: translateY(-3px);
}

.contact-icon::after,
.header-help-link::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(246, 180, 90, 0.32), transparent 68%);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
  transition: opacity 220ms ease, transform 220ms ease;
}

.contact-icon:hover::after,
.header-help-link:hover::after {
  opacity: 1;
  transform: scale(1.22);
}

.contact-icon span {
  animation: icon-soft-breathe 4.8s ease-in-out infinite;
}

.header-help-link img,
.footer-help img {
  animation: icon-soft-float 6.4s ease-in-out infinite;
}

.mobile-cta {
  display: none;
}

dialog {
  width: min(560px, calc(100vw - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

dialog::backdrop {
  background: rgba(20, 14, 10, 0.66);
  backdrop-filter: blur(6px);
}

.checkout-form,
.ticket-content {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: #ffe0b3;
  font-size: 28px;
  line-height: 1;
}

.instrument-options {
  display: grid;
  gap: 10px;
  margin: 4px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.instrument-options label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  margin: 0;
  border: 1px solid #e2d3c0;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.instrument-options input {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  accent-color: var(--rust);
}

.instrument-options label:has(input:checked) {
  border-color: var(--rust);
  background:
    linear-gradient(135deg, rgba(200, 70, 38, 0.1), transparent 56%),
    #fff;
  box-shadow: 0 12px 26px rgba(200, 70, 38, 0.14);
  transform: translateY(-1px);
}

.instrument-options span,
.instrument-options strong,
.instrument-options small {
  display: block;
}

.instrument-options strong {
  color: var(--ink);
  font-size: 15px;
}

.instrument-options small {
  margin-top: 3px;
  color: #75685d;
  font-size: 12px;
  line-height: 1.35;
}

.instrument-options b {
  color: var(--rust-dark);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 4px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.payment-methods label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  min-height: 76px;
  border: 1px solid #e2d3c0;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.payment-methods label:nth-of-type(5) {
  grid-column: 1 / -1;
}

.payment-methods input {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  accent-color: var(--rust);
}

.payment-methods label:has(input:checked) {
  border-color: var(--rust);
  background:
    linear-gradient(135deg, rgba(200, 70, 38, 0.1), transparent 56%),
    #fff;
  box-shadow: 0 12px 26px rgba(200, 70, 38, 0.14);
  transform: translateY(-1px);
}

.payment-methods label:hover {
  border-color: #c99461;
  box-shadow: 0 10px 22px rgba(89, 54, 28, 0.08);
}

.payment-methods span,
.payment-methods strong,
.payment-methods small {
  display: block;
}

.payment-methods strong {
  color: var(--ink);
  font-size: 15px;
}

.payment-methods small {
  margin-top: 3px;
  color: #75685d;
  font-size: 12px;
  line-height: 1.35;
}

.order-summary {
  padding: 16px;
  border-radius: 8px;
  background: #ffe0b3;
  color: #5a2415;
  line-height: 1.6;
}

.ticket-dialog {
  width: min(720px, calc(100vw - 28px));
}

.video-dialog {
  width: min(1040px, calc(100vw - 28px));
}

#youtubeDialog {
  width: min(1080px, calc(100vw - 28px));
  max-width: calc(100vw - 28px);
  max-height: calc(100vh - 28px);
}

.video-modal {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #120d09;
  box-shadow: var(--shadow);
}

.video-modal .icon-button {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
}

.video-dialog-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 46px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 247, 232, 0.28);
  border-radius: 999px;
  color: #fff8ed;
  background: rgba(18, 13, 9, 0.66);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.video-dialog-prev {
  left: 14px;
}

.video-dialog-next {
  right: 14px;
}

.video-dialog-nav:hover {
  border-color: rgba(246, 180, 90, 0.72);
  background: rgba(42, 25, 16, 0.84);
}

.video-chooser {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 58px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.video-chooser::-webkit-scrollbar {
  display: none;
}

.video-chooser button {
  flex: 0 0 auto;
  min-height: 30px;
  border: 1px solid rgba(255, 247, 232, 0.32);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 247, 232, 0.9);
  background: rgba(18, 13, 9, 0.62);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  font: inherit;
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 900;
  white-space: nowrap;
}

.video-chooser button.is-active {
  border-color: rgba(246, 180, 90, 0.9);
  color: #120d09;
  background: linear-gradient(135deg, var(--gold), #fff0c2);
}

.video-modal video {
  display: block;
  width: 100%;
  max-height: min(78vh, 720px);
  background: #000;
}

.youtube-modal {
  width: min(1080px, calc(100vw - 28px));
  display: grid;
  gap: 10px;
  overflow: visible;
  border: 1px solid rgba(255, 247, 232, 0.16);
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.08), rgba(216, 155, 56, 0.04)),
    #120d09;
}

.youtube-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}

.youtube-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-modal .icon-button {
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  background: rgba(255, 224, 179, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.ticket-content {
  grid-template-columns: 1fr 190px;
  align-items: center;
}

.ticket-notice {
  grid-column: 1 / -1;
  border: 1px solid rgba(200, 70, 38, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--rust-dark);
  background: #ffe2bf;
  font-weight: 800;
  line-height: 1.45;
}

.ticket-content h2 {
  font-size: 34px;
}

.ticket-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.ticket-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
}

.ticket-meta span {
  color: #6b5c50;
}

.payment-confirm-button {
  margin-top: 18px;
}

.pending-payment-box {
  align-content: center;
  min-height: 220px;
}

.pending-payment-box strong {
  color: var(--rust-dark);
  font-size: 30px;
}

.pending-note {
  margin: 16px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: #75685d;
  background: #fff1bf;
  line-height: 1.5;
}

.pix-copy-box {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.pix-copy-box label {
  color: #4a4037;
  font-size: 14px;
  font-weight: 800;
}

.pix-copy-box textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  line-height: 1.5;
}

.qr-box {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.qr-box img {
  width: 160px;
  height: 160px;
}

.qr-box small {
  color: #65594e;
  text-align: center;
  overflow-wrap: anywhere;
}

.ticket-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.music-gateway-icon,
.gallery-gateway-icon,
.pina-master-gateway-icon {
  animation: icon-soft-float 6.2s ease-in-out infinite;
}

.music-gateway:hover .music-gateway-icon,
.gallery-gateway:hover .gallery-gateway-icon,
.pina-master-space:hover .pina-master-gateway-icon {
  animation-duration: 2.6s;
}

.reveal.is-visible .music-gateway-icon span {
  transform-origin: center bottom;
  animation: equalizer-bar 1.8s ease-in-out infinite;
}

.reveal.is-visible .music-gateway-icon span:nth-child(2) {
  animation-delay: 180ms;
}

.reveal.is-visible .music-gateway-icon span:nth-child(3) {
  animation-delay: 360ms;
}

.reveal.is-visible .gallery-gateway-icon span {
  animation: tile-pulse 3.2s ease-in-out infinite;
}

.reveal.is-visible .gallery-gateway-icon span:nth-child(2) {
  animation-delay: 160ms;
}

.reveal.is-visible .gallery-gateway-icon span:nth-child(3) {
  animation-delay: 320ms;
}

.reveal.is-visible .gallery-gateway-icon span:nth-child(4) {
  animation-delay: 480ms;
}

.reveal.is-visible .pina-master-gateway-icon span {
  animation: page-glow 3.6s ease-in-out infinite;
}

.reveal.is-visible .pina-master-gateway-icon span:nth-child(2) {
  animation-delay: 260ms;
}

.reveal.is-visible .pina-master-gateway-icon span:nth-child(3) {
  animation-delay: 520ms;
}

@keyframes button-shine {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes warm-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.6deg);
  }
}

@keyframes hero-title-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(246, 194, 109, 0));
  }

  50% {
    filter: drop-shadow(0 0 14px rgba(246, 194, 109, 0.34));
  }
}

@keyframes music-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg) scale(1);
  }

  45% {
    transform: translateY(-14px) rotate(5deg) scale(1.06);
  }

  70% {
    transform: translateY(-8px) rotate(1deg) scale(0.98);
  }
}

@keyframes nav-mobile-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

@keyframes pineapple-outline-glow {
  0%,
  100% {
    opacity: 0.16;
    filter: drop-shadow(0 0 10px rgba(239, 156, 58, 0.24));
  }

  50% {
    opacity: 0.3;
    filter: drop-shadow(0 0 24px rgba(239, 156, 58, 0.46));
  }
}

@keyframes gallery-letter-in {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes card-glow {
  0%,
  100% {
    box-shadow: var(--shadow);
  }

  50% {
    box-shadow: 0 26px 76px rgba(141, 36, 25, 0.22);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

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

@keyframes scroll-lift-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(34px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes icon-soft-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-1px) scale(1.06);
  }
}

@keyframes icon-soft-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-4px) rotate(1.2deg);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(200, 70, 38, 0.16);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(70, 111, 63, 0.14);
    transform: scale(1.12);
  }
}

@keyframes icon-sweep {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-120%);
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes equalizer-bar {
  0%,
  100% {
    transform: scaleY(0.86);
    filter: brightness(1);
  }

  50% {
    transform: scaleY(1.12);
    filter: brightness(1.12);
  }
}

@keyframes tile-pulse {
  0%,
  100% {
    opacity: 0.88;
    filter: brightness(1);
  }

  50% {
    opacity: 1;
    filter: brightness(1.16);
  }
}

@keyframes page-glow {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.18) drop-shadow(0 0 10px rgba(246, 180, 90, 0.2));
  }
}

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

  .hero-media,
  .hero-media img,
  .hero-content {
    transform: none !important;
  }

  .live-video-card.is-scroll-managed {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .snap-letter {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 104px;
  }

  body {
    padding-bottom: 86px;
  }

  .site-header {
    position: fixed;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 12px 9px;
    background:
      linear-gradient(180deg, rgba(18, 18, 19, 0.94), rgba(18, 18, 19, 0.86)),
      rgba(18, 18, 19, 0.92);
    gap: 9px;
  }

  .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    padding: 3px 1px 1px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-marquee-track {
    display: flex;
    width: max-content;
    gap: 8px;
    animation: none;
    transform: none;
  }

  .nav-marquee-group {
    display: flex;
    gap: 8px;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a,
  .nav-link-reserve {
    flex: 0 0 auto;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 247, 232, 0.16);
    border-radius: 999px;
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-link-reserve {
    border-color: rgba(216, 155, 56, 0.34);
    color: var(--gold);
    background: rgba(216, 155, 56, 0.11);
  }

  .brand {
    gap: 9px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
  }

  .brand strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
  }

  .brand small {
    font-size: 11.5px;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  .header-contact {
    gap: 6px;
  }

  .header-contact .contact-icon {
    width: 40px;
    height: 36px;
  }

  .header-help-link {
    width: 40px;
    height: 36px;
  }

  .contact-strip {
    align-items: flex-start;
  }

  .contact-strip .contact-icons {
    width: 100%;
    margin-left: 0;
  }

  .artist-grid,
  .experience-grid,
  .ticket-section,
  .spain-section,
  .ticket-content {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 92svh;
    align-items: end;
    padding: 116px 18px 58px;
  }

  .hero.hero-artwork {
    display: block;
    height: auto;
    min-height: 0;
    margin-top: 104px;
    overflow: hidden;
    background: #120d09;
  }

  .hero.hero-artwork .hero-media {
    position: relative;
    inset: auto;
    height: auto;
    overflow: hidden;
  }

  .hero.hero-artwork .hero-media::before {
    content: none;
  }

  .hero.hero-artwork .hero-media img {
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: contain;
    object-position: center top;
  }

  .hero.hero-artwork .hero-content {
    display: block;
    inset: 0;
    width: auto;
    padding: clamp(14px, 4vw, 28px);
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero.hero-artwork h1 {
    max-width: min(280px, 43vw);
    font-size: clamp(24px, 6.8vw, 46px);
  }

  .hero-duration {
    width: min(250px, 100%);
    margin-top: 18px;
  }

  .hero-duration-number {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero.hero-artwork .hero-copy {
    display: block;
    left: 50%;
    bottom: clamp(8px, 2.4vw, 22px);
    width: min(620px, calc(100% - 28px));
    padding: clamp(7px, 1.8vw, 10px) clamp(10px, 2.6vw, 16px);
    border-radius: 6px;
    font-size: clamp(10px, 2.35vw, 14px);
    line-height: 1.25;
    color: #fff1c8;
    background: linear-gradient(90deg, rgba(18, 13, 9, 0.08), rgba(18, 13, 9, 0.22), rgba(18, 13, 9, 0.08));
    box-shadow: none;
    backdrop-filter: blur(2px);
  }

  .hero-artwork-actions {
    top: clamp(8px, 1.8vw, 12px);
    right: clamp(8px, 2.2vw, 14px);
    display: grid;
    width: min(138px, 22vw);
    gap: 4px;
  }

  .hero-artwork-actions .primary-button,
  .hero-artwork-actions .secondary-button {
    min-height: clamp(22px, 3.5vw, 28px);
    padding: 0 clamp(6px, 1.2vw, 9px);
    justify-content: center;
    font-size: clamp(8px, 1.35vw, 10px);
  }

  .hero-artwork-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    top: auto;
    bottom: clamp(76px, 9vw, 104px);
    width: min(620px, 56vw);
    gap: 6px;
  }

  .hero-artwork-tags span:first-child {
    flex-basis: auto;
    grid-column: 1 / -1;
  }

  .hero-artwork-tags span {
    width: 100%;
    padding: 6px 10px;
    font-size: clamp(9px, 1.8vw, 12px);
    text-align: center;
  }

  .hero-artwork-tags span:nth-child(3) {
    width: 100%;
    min-width: 34px;
    padding-inline: 8px;
  }

  .hero-artwork-tags span:nth-child(4) {
    grid-column: 1 / -1;
  }

  .hero-media {
    background-position: center;
    background-size: cover;
  }

  .hero-media img {
    object-fit: contain;
    object-position: center center;
    transform: none;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 20% 42%, rgba(216, 155, 56, 0.12), transparent 28%),
      linear-gradient(90deg, rgba(18, 13, 9, 0.72) 0%, rgba(18, 13, 9, 0.58) 46%, rgba(18, 13, 9, 0.24) 68%, rgba(18, 13, 9, 0.04) 100%),
      linear-gradient(0deg, rgba(18, 13, 9, 0.64), rgba(18, 13, 9, 0.14) 62%, rgba(18, 13, 9, 0.03));
  }

  .hero::before {
    content: "";
    z-index: 1;
    top: 70px;
    right: auto;
    bottom: 0;
    left: -76px;
    width: 210px;
    height: auto;
    opacity: 0.42;
    background:
      linear-gradient(90deg, rgba(18, 13, 9, 0.34), transparent 78%),
      linear-gradient(135deg, rgba(23, 54, 34, 0.72), rgba(216, 155, 56, 0.48));
    filter: saturate(1.05) contrast(1.02) brightness(0.88) drop-shadow(18px 18px 30px rgba(0, 0, 0, 0.48));
    transform: none;
    mask-image: linear-gradient(90deg, #000 0 76%, transparent 100%);
  }

  .hero::after {
    content: "♪  ♫  ♩  ♬  ♪  ♫  ♩  ♬  ♪  ♫  ♩  ♬";
    position: absolute;
    z-index: 1;
    top: 92px;
    bottom: 88px;
    left: 0;
    width: min(46vw, 178px);
    padding: 22px 14px;
    color: rgba(246, 180, 90, 0.42);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(24px, 10vw, 44px);
    font-weight: 800;
    line-height: 1.38;
    letter-spacing: 0;
    white-space: normal;
    overflow: hidden;
    pointer-events: none;
    text-shadow:
      0 0 18px rgba(239, 156, 58, 0.28),
      0 12px 30px rgba(8, 11, 7, 0.42);
    background:
      radial-gradient(circle at 18% 16%, rgba(246, 180, 90, 0.18), transparent 18%),
      radial-gradient(circle at 72% 38%, rgba(255, 247, 232, 0.12), transparent 20%),
      radial-gradient(circle at 32% 72%, rgba(246, 180, 90, 0.15), transparent 18%),
      linear-gradient(90deg, rgba(18, 13, 9, 0.34), transparent 100%);
    opacity: 0.9;
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  }

  .music-notes span {
    font-size: clamp(24px, 9vw, 42px);
    opacity: 0.34;
  }

  .music-notes span:nth-child(1) {
    top: 14%;
    right: 10%;
  }

  .music-notes span:nth-child(2) {
    top: 26%;
    right: 4%;
  }

  .music-notes span:nth-child(3) {
    display: none;
  }

  .music-notes span:nth-child(4) {
    top: 40%;
    right: 5%;
  }

  h1 {
    max-width: 11.5ch;
    font-size: clamp(32px, 9.4vw, 50px);
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .hero-copy {
    max-width: 32ch;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
    justify-content: center;
  }

  .section,
  .ticket-section,
  .media-section,
  .music-section,
  .pina-master-section,
  .partnership-section,
  .spain-section,
  .experience-section {
    padding: 64px 18px;
  }

  .music-layout,
  .partnership-layout {
    grid-template-columns: 1fr;
  }

  .partnership-player {
    grid-template-columns: 48px 1fr;
    padding: 14px;
  }

  .partnership-feature-video {
    grid-template-columns: 48px minmax(88px, 128px) minmax(0, 1fr);
  }

  .partnership-player > span {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .youtube-list {
    grid-template-columns: 1fr;
  }

  .youtube-card,
  .youtube-card:nth-child(4),
  .youtube-card:nth-child(5) {
    grid-column: auto;
  }

  .music-card {
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }

  .music-card > span {
    width: 36px;
    height: 36px;
  }

  .media-section {
    padding: 96px 18px 72px;
  }

  .media-section .section-heading {
    width: auto;
    margin-bottom: 36px;
  }

  .snap-slide,
  .snap-slide img {
    height: 100svh;
  }

  .snap-slide-content {
    left: 18px;
    right: 18px;
    bottom: 84px;
    width: auto;
  }

  .snap-slide-content h3 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .snap-slide-content p {
    font-size: 15px;
  }

  .experience-section {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .experience-section::before {
    background:
      linear-gradient(90deg, rgba(18, 13, 9, 0.88) 0%, rgba(18, 13, 9, 0.5) 48%, rgba(18, 13, 9, 0.72) 100%),
      linear-gradient(0deg, rgba(18, 13, 9, 0.9), rgba(18, 13, 9, 0.18) 52%, rgba(18, 13, 9, 0.58)),
      url("assets/experiencia-conexao-optimized-20260603.jpg?v=20260610-maos-unidas") 50% 28% / 92% auto no-repeat;
    background-attachment: scroll;
  }

  .experience-section::after {
    inset: 12px;
    opacity: calc(0.36 + (var(--experience-reveal, 0) * 0.16));
  }

  .experience-grid {
    gap: 10px;
  }

  .experience-grid article {
    min-height: auto;
    padding: 16px;
    background:
      linear-gradient(180deg, rgba(255, 248, 237, 0.1), rgba(255, 248, 237, 0.03)),
      rgba(18, 13, 9, 0.28);
    backdrop-filter: blur(4px);
  }

  .experience-grid article::before {
    background:
      radial-gradient(circle at 80% 18%, rgba(216, 155, 56, 0.16), transparent 36%),
      linear-gradient(135deg, rgba(23, 54, 34, 0.58), rgba(110, 45, 24, 0.54));
    background-attachment: scroll;
  }

  .experience-grid article::after {
    inset: 8px;
  }

  .experience-grid span {
    font-size: 11px;
  }

  .experience-grid h3 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 19px;
  }

  .experience-grid p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .artist-grid {
    gap: 14px;
  }

  .artist-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
    min-height: 188px;
  }

  .artist-card img {
    width: 120px;
    height: 188px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .artist-card div {
    min-width: 0;
    min-height: 188px;
    padding: 18px 20px;
  }

  .artist-card h3 {
    overflow-wrap: anywhere;
    font-size: 22px;
    line-height: 1.1;
  }

  .artist-card p {
    margin: 8px 0 0;
    overflow-wrap: anywhere;
    font-size: 18px;
    line-height: 1.45;
  }

  .ticket-section {
    gap: 24px;
  }

  .checkout-card,
  .event-details,
  .verifier {
    box-shadow: 0 14px 38px rgba(24, 21, 18, 0.14);
  }

  .checkout-card {
    padding: 18px;
  }

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

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

  .split-box {
    padding: 16px;
  }

  .split-box strong {
    font-size: 30px;
  }

  .spain-map {
    width: min(62vw, 260px);
    justify-self: center;
  }

  .spain-section {
    gap: 30px;
  }

  .spain-copy {
    text-align: left;
  }

  .spain-copy p {
    max-width: 36rem;
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
    line-height: 1.58;
  }

  .spain-copy h2 {
    max-width: 14ch;
  }

  .culture-grid {
    gap: 8px;
    margin-top: 18px;
  }

  .culture-grid div {
    display: grid;
    grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
    align-items: start;
    gap: 8px 12px;
    min-height: auto;
    padding: 12px;
  }

  .culture-grid strong {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
  }

  .culture-grid span {
    font-size: 13px;
    line-height: 1.42;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
  }

  .memory-strip {
    display: flex;
    gap: 12px;
    margin: 0 -18px;
    padding: 0 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .memory-card,
  .memory-card.is-wide {
    flex: 0 0 min(84vw, 420px);
    min-height: 360px;
    scroll-snap-align: center;
  }

  .snap-slide::before {
    background:
      linear-gradient(90deg, rgba(18, 13, 9, 0.82) 0%, rgba(18, 13, 9, 0.42) 52%, rgba(18, 13, 9, 0.12) 100%),
      linear-gradient(0deg, rgba(18, 13, 9, 0.86), transparent 50%, rgba(18, 13, 9, 0.2));
  }

  .photo-gallery figure,
  .featured-photo {
    min-height: 240px;
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 84px;
  }

  .footer-help {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .footer-contact {
    margin-left: 0;
    text-align: left;
    justify-items: start;
  }

  .footer-help img {
    width: 52px;
    height: 52px;
  }

  .footer-help span {
    font-size: 10px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 20;
    left: 10px;
    right: 10px;
    bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 8px 8px 12px;
    border: 1px solid rgba(246, 180, 90, 0.42);
    border-radius: 8px;
    color: #fff;
    background: rgba(28, 15, 11, 0.94);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
  }

  .mobile-cta span,
  .mobile-cta strong {
    display: block;
  }

  .mobile-cta span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    margin-top: 2px;
    font-size: 13px;
  }

  .mobile-cta .primary-button {
    min-height: 38px;
    padding: 0 12px;
    flex: 0 0 auto;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 112px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 8px 9px 7px;
    gap: 7px 8px;
  }

  .addon-option {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "details"
      "price";
    align-items: start;
  }

  .addon-option strong {
    margin-top: 4px;
    text-align: left;
  }

  .site-header.is-scrolled {
    padding: 7px 9px 7px;
  }

  .brand {
    grid-column: 1;
    gap: 8px;
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    max-width: clamp(112px, 34vw, 158px);
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.04;
  }

  .brand small {
    font-size: 11.5px;
    line-height: 1.12;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
    gap: 4px;
  }

  .header-contact {
    gap: 4px;
  }

  .language-toggle {
    padding: 2px;
  }

  .language-toggle button {
    min-width: 25px;
    min-height: 24px;
    font-size: 10px;
  }

  .header-contact .contact-icon,
  .header-help-link {
    width: 34px;
    height: 32px;
    border-radius: 9px;
  }

  .contact-icon span {
    font-size: 16px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 4px 0 0;
    gap: 0;
  }

  .nav-links a,
  .nav-link-reserve {
    flex: 0 0 auto;
    min-height: 29px;
    justify-content: center;
    padding: 0 12px;
    text-align: center;
    white-space: nowrap;
    font-size: 10.5px;
    line-height: 1;
  }

  .nav-marquee-track {
    width: max-content;
    gap: 28px;
    animation: nav-mobile-marquee 24s linear infinite;
    transform: none;
    will-change: transform;
  }

  .nav-marquee-group {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    gap: 7px;
  }

  .nav-marquee-group[aria-hidden="true"] {
    display: flex;
  }

  .nav-links:hover .nav-marquee-track,
  .nav-links:focus-within .nav-marquee-track {
    animation-play-state: paused;
  }

  .nav-action {
    display: none;
  }

  .artists-section {
    overflow: hidden;
  }

  .artist-grid {
    gap: 16px;
  }

  .artist-card {
    grid-template-columns: 120px minmax(0, 1fr);
    width: 100%;
    min-height: 188px;
  }

  .artist-card img {
    width: 120px;
    height: 188px;
    object-fit: cover;
  }

  .artist-card div {
    min-width: 0;
    min-height: 188px;
    padding: 18px 20px;
  }

  .artist-card h3 {
    font-size: 24px;
    line-height: 1.08;
  }

  .artist-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 18px;
    line-height: 1.45;
  }

  .youtube-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 84px;
  }

  .youtube-card img {
    width: 96px;
    height: 64px;
  }

  #youtubeDialog {
    width: calc(100vw - 18px);
    max-width: calc(100vw - 18px);
  }

  .youtube-modal {
    padding: 8px;
  }

  .youtube-modal .icon-button {
    top: 6px;
    right: 6px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .partnership-feature-video {
    grid-template-columns: 1fr;
  }

  .partnership-feature-video > span {
    display: none;
  }

  .partnership-feature-video img {
    max-height: 148px;
  }

  .language-toggle {
    display: flex;
    order: -1;
    padding: 2px;
  }

  .language-toggle button {
    min-width: 25px;
    min-height: 24px;
    font-size: 9px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-copy {
    max-width: 31ch;
    padding-left: 14px;
  }

  .hero.hero-artwork {
    min-height: 0;
    margin-top: 98px;
  }

  .hero.hero-artwork .hero-media img {
    width: 100%;
  }

  .hero.hero-artwork .hero-media picture {
    display: block;
    width: 100%;
  }

  .hero.hero-artwork .hero-content {
    inset: 0;
    width: auto;
    padding: 8px 8px;
  }

  .hero.hero-artwork .eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #f6c26d;
    font-size: clamp(8px, 2.35vw, 11px);
    letter-spacing: 0.08em;
  }

  .hero.hero-artwork h1 {
    display: block;
    max-width: 25vw;
    font-size: clamp(14px, 4.5vw, 21px);
    line-height: 0.92;
  }

  .hero.hero-artwork .hero-copy {
    display: none;
    top: 76%;
    bottom: auto;
    width: 100%;
    padding: 6px 24px;
    border-radius: 0;
    color: #fff1c8;
    background: transparent;
    font-size: clamp(8px, 2.25vw, 10px);
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.84);
    transform: translate(-50%, -50%);
  }

  .performance-tags {
    gap: 8px;
  }

  .performance-tags span {
    padding: 5px 8px;
    font-size: 9px;
  }

  .hero-artwork-actions {
    top: 6px;
    right: 12px;
    width: min(128px, 24vw);
    gap: 3px;
  }

  .hero-artwork-actions .primary-button,
  .hero-artwork-actions .secondary-button {
    min-height: 23px;
    padding: 0 6px;
    font-size: clamp(7px, 1.75vw, 9px);
  }

  .hero-artwork-tags {
    top: 72%;
    bottom: auto;
    left: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: min(280px, calc(100% - 56px));
    gap: 3px 4px;
    transform: translateX(-50%);
  }

  .hero-artwork-tags span {
    display: none;
  }

  .hero-artwork-tags span:first-child {
    display: inline-flex;
    flex-basis: 100%;
    min-height: 11px;
    align-items: center;
    justify-content: center;
    border-color: rgba(255, 248, 237, 0.5);
    border-radius: 999px;
    padding: 1px 8px;
    color: rgba(255, 248, 237, 0.9);
    background: transparent;
    font-size: clamp(4px, 1.15vw, 6px);
    font-weight: 900;
    text-transform: uppercase;
  }

  .hero-artwork-tags span:nth-child(n + 2),
  .hero-artwork-tags span:last-child {
    display: inline-flex;
    flex-basis: auto;
    min-height: 12px;
    align-items: center;
    border-color: rgba(255, 248, 237, 0.68);
    border-radius: 999px;
    padding: 1px 6px;
    color: rgba(255, 248, 237, 0.9);
    background: transparent;
    font-size: clamp(4px, 1.2vw, 6px);
    font-weight: 900;
    text-transform: uppercase;
  }

  .experience-grid article {
    min-height: auto;
  }

  .pina-master-section {
    padding: 74px 18px 86px;
  }

  .pina-master-panel {
    gap: 10px;
  }

  .pina-master-panel h2 {
    max-width: calc(100vw - 42px);
    margin-inline: auto;
    font-size: clamp(24px, 7.6vw, 34px);
    line-height: 1;
    white-space: nowrap;
  }

  .pina-master-space {
    min-height: 260px;
  }

  .spain-section {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .memory-card,
  .memory-card.is-wide {
    flex-basis: 86vw;
    min-height: 320px;
  }

  .photo-gallery figure,
  .featured-photo {
    min-height: 300px;
  }

  .spain-map,
  button.spain-map {
    width: min(58vw, 190px);
  }

  .spain-map span {
    position: absolute;
    top: 38%;
    left: 50%;
    width: 86%;
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 0.86;
    transform: translate(-50%, -50%);
  }

  .spain-map small {
    display: none;
  }

  .spain-map em {
    bottom: 12%;
    min-height: 28px;
    padding: 0 12px;
    font-size: 8px;
    white-space: nowrap;
  }

  .spain-map::before {
    inset: 12px;
  }

  .spain-map::after {
    background:
      linear-gradient(180deg, rgba(10, 16, 22, 0.46), rgba(8, 13, 18, 0.68)),
      radial-gradient(circle at 50% 42%, rgba(18, 13, 9, 0.24), transparent 46%);
    opacity: 0.95;
  }

  .spain-map video {
    opacity: 0.34;
    filter: saturate(0.95) contrast(1.05) brightness(0.72);
  }

  .spain-copy h2 {
    max-width: 100%;
    margin: 0;
  }

  .culture-grid div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .payment-verifier {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .verifier.payment-verifier {
    grid-template-columns: 1fr;
  }

  .payment-verifier-heading,
  .verify-result {
    grid-column: 1;
    grid-row: auto;
  }

  .inline-form button {
    width: 100%;
  }

  .qr-scan-button {
    width: 100%;
    justify-content: center;
  }

  dialog {
    width: min(560px, calc(100% - 8px));
    max-width: none;
    max-height: 100dvh;
    margin: 0;
  }

  .checkout-dialog,
  .ticket-dialog {
    align-self: end;
  }

  .checkout-form,
  .ticket-content {
    border-radius: 8px 8px 0 0;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
  }

  .checkout-form {
    max-height: 92dvh;
    overflow: auto;
  }

  .video-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    padding: 0;
    background: rgba(18, 13, 9, 0.96);
  }

  .video-modal {
    display: grid;
    width: 100%;
    height: 100%;
    align-items: center;
    border-radius: 0;
    padding: 68px 0 94px;
    background: #120d09;
  }

  .video-modal .icon-button {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
  }

  .video-modal video {
    width: 100%;
    max-height: calc(100dvh - 184px);
    object-fit: contain;
  }

  .video-dialog-nav {
    position: fixed;
    width: 44px;
    height: 54px;
    font-size: 40px;
  }

  .video-dialog-prev {
    left: max(8px, env(safe-area-inset-left));
  }

  .video-dialog-next {
    right: max(8px, env(safe-area-inset-right));
  }

  .video-chooser {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(14px, env(safe-area-inset-bottom));
    padding: 0 0 4px;
  }

  .video-chooser button {
    min-height: 36px;
    padding: 0 14px;
    font-size: 12px;
  }

  .dialog-header h2 {
    font-size: 32px;
  }

  input,
  select {
    min-height: 50px;
    font-size: 16px;
  }

  .instrument-options {
  display: grid;
  gap: 10px;
  margin: 4px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.instrument-options label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  margin: 0;
  border: 1px solid #e2d3c0;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.instrument-options input {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  accent-color: var(--rust);
}

.instrument-options label:has(input:checked) {
  border-color: var(--rust);
  background:
    linear-gradient(135deg, rgba(200, 70, 38, 0.1), transparent 56%),
    #fff;
  box-shadow: 0 12px 26px rgba(200, 70, 38, 0.14);
  transform: translateY(-1px);
}

.instrument-options span,
.instrument-options strong,
.instrument-options small {
  display: block;
}

.instrument-options strong {
  color: var(--ink);
  font-size: 15px;
}

.instrument-options small {
  margin-top: 3px;
  color: #75685d;
  font-size: 12px;
  line-height: 1.35;
}

.instrument-options b {
  color: var(--rust-dark);
}

.payment-methods {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .ticket-content {
    gap: 18px;
  }

  .ticket-content h2 {
    font-size: 30px;
  }

  .ticket-meta div {
    display: grid;
    gap: 3px;
  }

  .qr-box img {
    width: 190px;
    height: 190px;
  }

  .ticket-actions {
    flex-direction: column-reverse;
    padding: 0 10px 10px;
  }

  .ticket-actions button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .brand strong {
    max-width: 88px;
  }

  .header-contact .contact-icon:first-child {
    display: none;
  }
}

@media (max-width: 560px) and (orientation: portrait) {
  .hero.hero-artwork {
    margin-top: 44px;
    background: #120d09;
  }

  .hero.hero-artwork .hero-media {
    max-height: none;
    background: #120d09;
    line-height: 0;
  }

  .hero.hero-artwork .hero-media picture {
    aspect-ratio: 853 / 1844;
  }

  .hero.hero-artwork .hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .hero.hero-artwork .hero-content {
    display: block;
    padding: clamp(58px, 18vw, 82px) 12px 10px;
  }

  .hero.hero-artwork .eyebrow {
    max-width: 50vw;
    margin-bottom: 4px;
    color: #ffd37b;
    font-size: clamp(8px, 2.4vw, 10px);
    line-height: 1.05;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82);
  }

  .hero.hero-artwork .hero-eyebrow-separator {
    opacity: 0;
  }

  .hero.hero-artwork h1 {
    max-width: 46vw;
    color: #fff1c8;
    font-size: clamp(22px, 8vw, 34px);
    line-height: 0.9;
    text-shadow:
      0 3px 0 rgba(141, 36, 25, 0.22),
      0 10px 24px rgba(0, 0, 0, 0.66);
  }

  .hero.hero-artwork .hero-artwork-actions {
    display: grid;
    position: static;
    grid-template-columns: 1fr 1fr;
    width: auto;
    gap: 8px;
    padding: 10px 12px 14px;
    background:
      linear-gradient(180deg, rgba(18, 13, 9, 0), rgba(18, 13, 9, 0.88) 18%),
      #120d09;
  }

  .hero.hero-artwork .hero-artwork-actions .primary-button,
  .hero.hero-artwork .hero-artwork-actions .secondary-button {
    min-height: 42px;
    border-radius: 999px;
    padding: 0 12px;
    font-size: clamp(10px, 2.7vw, 12px);
    line-height: 1.05;
  }

  .hero.hero-artwork .hero-artwork-tags {
    display: grid;
    position: absolute;
    grid-template-columns: minmax(76px, 1fr) minmax(30px, auto) minmax(130px, 1.55fr);
    top: 70.5%;
    bottom: auto;
    left: 50%;
    z-index: 5;
    width: min(390px, calc(100vw - 32px));
    gap: 6px 5px;
    margin: 0;
    padding: 0;
    background: transparent;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .hero.hero-artwork .hero-artwork-tags span,
  .hero.hero-artwork .hero-artwork-tags span:first-child,
  .hero.hero-artwork .hero-artwork-tags span:nth-child(n + 2),
  .hero.hero-artwork .hero-artwork-tags span:last-child {
    display: inline-flex;
    min-width: 0;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(246, 180, 90, 0.18);
    border-radius: 999px;
    padding: 0 8px;
    color: rgba(255, 248, 237, 0.92);
    background: rgba(28, 15, 11, 0.08);
    box-shadow: 0 7px 16px rgba(28, 15, 11, 0.06);
    font-size: clamp(7px, 2.35vw, 10px);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.84), 0 0 1px rgba(255, 248, 237, 0.65);
    backdrop-filter: none;
  }

  .hero.hero-artwork .hero-artwork-tags span:first-child {
    grid-column: 1 / -1;
    flex: none;
    min-height: 29px;
    width: 100%;
    margin: 0;
    background: rgba(28, 15, 11, 0.08);
    font-size: clamp(8px, 2.65vw, 10.5px);
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(n + 2) {
    flex: none;
    min-width: 0;
    padding-inline: 5px;
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(2) {
    background: rgba(28, 15, 11, 0.08);
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(3) {
    width: auto;
    min-width: 30px;
    padding-inline: 8px;
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(4) {
    min-width: 0;
    padding-inline: 7px;
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(5) {
    grid-column: 1 / 3;
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(6) {
    grid-column: 3;
  }
}

@media (max-width: 640px) and (orientation: portrait) {
  .hero.hero-artwork .hero-artwork-tags {
    grid-template-columns: minmax(76px, 0.72fr) 26px minmax(142px, 1.45fr);
    grid-template-areas:
      "brazilian brazilian brazilian"
      "samba and folk"
      "bossa bossa duration";
    top: 76%;
    width: min(370px, calc(100vw - 28px));
    gap: 5px 5px;
  }

  .hero.hero-artwork .hero-artwork-tags span,
  .hero.hero-artwork .hero-artwork-tags span:first-child,
  .hero.hero-artwork .hero-artwork-tags span:nth-child(n + 2),
  .hero.hero-artwork .hero-artwork-tags span:last-child {
    min-height: 25px;
    border: 1px solid rgba(246, 180, 90, 0.38);
    border-radius: 999px;
    padding: 0 7px;
    color: #fffaf1;
    background: linear-gradient(90deg, rgba(73, 39, 22, 0.66), rgba(27, 16, 12, 0.58));
    box-shadow:
      inset 0 1px 0 rgba(255, 244, 220, 0.16),
      0 5px 14px rgba(20, 12, 9, 0.24);
    font-size: clamp(7.5px, 2.4vw, 10px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.05;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 2px rgba(255, 248, 237, 0.72);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .hero.hero-artwork .hero-artwork-tags span:first-child {
    grid-area: brazilian;
    justify-self: center;
    width: min(190px, 54vw);
    min-height: 24px;
    border-color: rgba(246, 180, 90, 0.28);
    background: rgba(30, 18, 13, 0.5);
    font-size: clamp(7px, 2.15vw, 9px);
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(2) {
    grid-area: samba;
    width: 100%;
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(3) {
    grid-area: and;
    width: 26px;
    min-width: 26px;
    padding-inline: 0;
    border-color: rgba(246, 180, 90, 0.52);
    background: rgba(111, 67, 34, 0.72);
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(4) {
    grid-area: folk;
    width: 100%;
    min-width: 0;
    min-height: 27px;
    margin-top: 0;
    padding-inline: 6px;
    font-size: clamp(7.5px, 2.35vw, 10px);
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(5) {
    grid-area: bossa;
    width: 100%;
    min-height: 24px;
    margin-top: 1px;
    border-color: rgba(246, 180, 90, 0.28);
    background: rgba(30, 18, 13, 0.5);
    font-size: clamp(7px, 2.15vw, 9px);
  }

  .hero.hero-artwork .hero-artwork-tags span:nth-child(6) {
    grid-area: duration;
    justify-self: center;
    width: 100%;
    min-height: 24px;
    margin-top: 1px;
    border-color: rgba(246, 180, 90, 0.28);
    background: rgba(30, 18, 13, 0.5);
    font-size: clamp(7px, 2.15vw, 9px);
  }
}

@media (max-width: 920px) and (orientation: landscape) {
  .hero.hero-artwork .hero-content {
    padding: 12px 18px;
  }

  .hero.hero-artwork .eyebrow {
    margin-bottom: 4px;
    font-size: clamp(8px, 1.8vw, 11px);
  }

  .hero.hero-artwork h1 {
    max-width: min(340px, 38vw);
    font-size: clamp(26px, 5vw, 42px);
    line-height: 0.9;
  }

  .hero.hero-artwork .hero-copy {
    bottom: clamp(2px, 0.8vw, 8px);
  }
}

@media print {
  body * {
    visibility: hidden;
  }

  #ticketDialog,
  #ticketDialog * {
    visibility: visible;
  }

  #ticketDialog {
    position: fixed;
    inset: 20px;
    width: auto;
  }

  .ticket-actions {
    display: none;
  }
}
