:root {
  --bg: #070708;
  --panel: #101114;
  --panel-soft: #17191d;
  --paper: #f3eee5;
  --paper-2: #e7ded1;
  --ink: #101114;
  --muted: #9a9da5;
  --line: rgba(243, 238, 229, 0.14);
  --line-dark: rgba(16, 17, 20, 0.12);
  --red: #e73531;
  --cyan: #16c7df;
  --gold: #c8a45d;
  --max: 1180px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  margin: 0;
}

body::selection {
  background: var(--red);
  color: #fff;
}

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

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px 40px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
  z-index: 60;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 7, 8, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  padding-bottom: 12px;
  padding-top: 12px;
}

.brand {
  display: inline-flex;
  position: relative;
  z-index: 2;
}

.brand img {
  height: 86px;
  object-fit: contain;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(243, 238, 229, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  padding: 10px 12px;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line);
  color: #fff;
  outline: none;
}

.site-nav .nav-cta {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  padding-inline: 18px;
}

.nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: none;
  height: 46px;
  position: relative;
  width: 46px;
  z-index: 2;
}

.nav-toggle span {
  background: var(--paper);
  display: block;
  height: 2px;
  left: 13px;
  position: absolute;
  transition: transform 180ms ease;
  width: 18px;
}

.nav-toggle span:first-child {
  top: 17px;
}

.nav-toggle span:last-child {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  min-height: 920px;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-media img,
.hero-shade {
  inset: 0;
  height: 100%;
  position: absolute;
  width: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 24%;
}

.hero .hero-media img {
  animation: heroDrift 18s ease-out both;
}

.hero-shade {
  background:
    radial-gradient(circle at 24% 42%, rgba(22, 199, 223, 0.18), transparent 24%),
    radial-gradient(circle at 17% 58%, rgba(231, 53, 49, 0.18), transparent 20%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.88), rgba(7, 7, 8, 0.62) 42%, rgba(7, 7, 8, 0.18)),
    linear-gradient(180deg, rgba(7, 7, 8, 0.32), rgba(7, 7, 8, 0.92));
}

.hero-inner {
  max-width: 780px;
  padding: 245px 70px 220px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 22px;
  text-transform: uppercase;
}

h1 {
  color: var(--paper);
  font-size: 8.8rem;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 4.4rem;
  font-weight: 920;
  letter-spacing: 0;
}

h3 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  color: rgba(243, 238, 229, 0.9);
  font-size: 1.38rem;
  max-width: 650px;
}

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

.btn,
.show-card a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  text-transform: uppercase;
}

.btn-primary,
.show-card a {
  background: var(--red);
  border: 1px solid var(--red);
  box-shadow: 0 18px 42px rgba(231, 53, 49, 0.25);
  color: #fff;
}

.btn-ghost,
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(243, 238, 229, 0.2);
  color: var(--paper);
}

.btn:hover,
.btn:focus-visible,
.show-card a:hover,
.show-card a:focus-visible {
  outline: 3px solid rgba(22, 199, 223, 0.28);
  outline-offset: 3px;
}

.btn,
.show-card a,
.site-nav a,
.whatsapp-float {
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.btn:hover,
.show-card a:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero-booking {
  background: rgba(7, 7, 8, 0.72);
  border: 1px solid var(--line);
  bottom: 42px;
  box-shadow: var(--shadow);
  padding: 22px;
  position: absolute;
  right: 42px;
  width: 330px;
  z-index: 1;
}

.hero-booking {
  animation: softPulse 4.8s ease-in-out infinite;
}

.hero-booking span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-booking strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
  margin: 8px 0 18px;
}

.hero-booking a {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.proof-strip {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(231, 53, 49, 0.22), rgba(22, 199, 223, 0.12)),
    #090a0c;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--paper);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px 40px;
}

.proof-track {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.proof-track span {
  align-items: center;
  color: rgba(243, 238, 229, 0.72);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 12px;
  text-transform: uppercase;
}

.proof-track span::before {
  background: var(--red);
  border-radius: 999px;
  content: "";
  height: 7px;
  width: 7px;
}

.proof-track strong {
  color: #fff;
  font-weight: 950;
}

.proof-strip > a {
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 10px 16px;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  animation: revealIn 560ms ease both;
}

.section-shell {
  margin: 0 auto;
  max-width: var(--max);
  padding: 110px 36px;
}

.section-paper {
  background:
    linear-gradient(135deg, rgba(22, 199, 223, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(231, 53, 49, 0.09), transparent 34%),
    var(--paper);
  color: var(--ink);
}

.signature-grid {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 0.95fr 1.05fr;
}

.story-layout {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.82fr 0.58fr 0.95fr;
}

.story-premium-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 96px);
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1fr);
}

.story-visual h2 {
  max-width: 620px;
}

.story-content {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line-dark);
  box-shadow: 0 28px 90px rgba(16, 17, 20, 0.08);
  padding: clamp(30px, 4vw, 48px);
}

.story-content p {
  color: rgba(16, 17, 20, 0.76);
  font-size: 1.08rem;
}

.story-lead {
  color: var(--ink) !important;
  font-size: clamp(1.18rem, 1.7vw, 1.42rem) !important;
  line-height: 1.5;
}

.story-copy,
.section-head p,
.music p,
.signature-copy p,
.booking-copy p {
  color: rgba(16, 17, 20, 0.74);
  font-size: 1.06rem;
}

.story-media {
  margin: 0;
  position: relative;
}

.story-media::before {
  border: 1px solid rgba(231, 53, 49, 0.32);
  content: "";
  inset: 18px -16px -18px 16px;
  position: absolute;
}

.story-media img {
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 70px rgba(16, 17, 20, 0.14);
  height: 520px;
  object-fit: cover;
  object-position: 40% center;
  position: relative;
  width: 100%;
}

.story-cover {
  margin: 34px 0 0;
  position: relative;
}

.story-cover::before {
  background: linear-gradient(135deg, rgba(231, 53, 49, 0.28), rgba(22, 199, 223, 0.18));
  content: "";
  inset: 22px -18px -22px 18px;
  position: absolute;
}

.story-cover img {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 20%, rgba(200, 164, 93, 0.12), transparent 36%),
    #0b0c0f;
  border: 1px solid rgba(16, 17, 20, 0.12);
  box-shadow: 0 28px 90px rgba(16, 17, 20, 0.22);
  height: auto;
  object-fit: contain;
  padding: 12px;
  position: relative;
  width: min(100%, 460px);
}

.story-cover figcaption {
  color: rgba(16, 17, 20, 0.62);
  font-size: 0.82rem;
  font-weight: 850;
  margin-top: 14px;
  position: relative;
  text-transform: uppercase;
}

.story-milestones {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.story-milestones span {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  color: rgba(16, 17, 20, 0.72);
  display: block;
  min-height: 118px;
  padding: 18px;
}

.story-milestones strong {
  color: var(--red);
  display: block;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.signature {
  background:
    radial-gradient(circle at 18% 28%, rgba(22, 199, 223, 0.12), transparent 28%),
    #08090a;
}

.artist-portrait {
  margin: 0;
  position: relative;
}

.artist-portrait::before {
  border: 1px solid rgba(200, 164, 93, 0.32);
  content: "";
  inset: 26px -26px -26px 26px;
  position: absolute;
}

.artist-portrait img {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  height: 610px;
  object-fit: cover;
  object-position: center top;
  position: relative;
  width: 100%;
}

.signature-copy p {
  color: rgba(243, 238, 229, 0.74);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(243, 238, 229, 0.86);
  font-size: 0.86rem;
  font-weight: 850;
  padding: 9px 13px;
}

.section-head {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 0.9fr;
  margin-bottom: 42px;
}

.section-head.dark p {
  color: rgba(243, 238, 229, 0.68);
}

.show-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.show-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line-dark);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.show-card:hover {
  box-shadow: 0 24px 70px rgba(16, 17, 20, 0.12);
  transform: translateY(-4px);
}

.show-card.is-featured {
  background:
    linear-gradient(150deg, rgba(231, 53, 49, 0.18), transparent 46%),
    var(--ink);
  color: var(--paper);
}

.show-number {
  color: var(--red);
  font-weight: 950;
  margin-bottom: 40px;
}

.show-card p,
.show-card li {
  color: inherit;
  opacity: 0.74;
}

.show-card ul {
  margin: 12px 0 24px;
  padding-left: 18px;
}

.show-card strong {
  display: block;
  margin-top: auto;
}

.show-card a {
  margin-top: 22px;
}

.gallery,
.sponsors {
  background: #08090a;
}

.gallery-layout {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
}

.gallery-layout figure {
  background: var(--panel);
  border: 1px solid var(--line);
  margin: 0;
  overflow: hidden;
}

.gallery-layout img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  transition: filter 420ms ease, transform 420ms ease;
  width: 100%;
}

.gallery-layout figure:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-large img {
  aspect-ratio: 4 / 5;
}

.gallery-press img {
  object-fit: contain;
  padding: 10px;
}

.music-layout {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.95fr 0.62fr 0.95fr;
}

.music-copy p {
  color: rgba(16, 17, 20, 0.74);
  font-size: 1.06rem;
}

.music-photo {
  margin: 0;
  position: relative;
}

.music-photo::before {
  background: linear-gradient(180deg, var(--cyan), var(--red));
  content: "";
  inset: 26px -12px -26px 12px;
  opacity: 0.22;
  position: absolute;
}

.music-photo img {
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 70px rgba(16, 17, 20, 0.18);
  height: 480px;
  object-fit: cover;
  object-position: center top;
  position: relative;
  width: 100%;
}

.music-panel {
  background:
    linear-gradient(145deg, rgba(16, 17, 20, 0.96), rgba(16, 17, 20, 0.9)),
    var(--ink);
  border: 1px solid rgba(16, 17, 20, 0.14);
  box-shadow: 0 26px 80px rgba(16, 17, 20, 0.14);
  color: var(--paper);
  padding: 18px;
}

.listen-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(22, 199, 223, 0.18), transparent 45%),
    #070708;
  border: 1px solid rgba(243, 238, 229, 0.14);
  display: grid;
  gap: 16px;
  grid-template-columns: 58px 1fr;
  min-height: 120px;
  padding: 20px;
}

.listen-card::after {
  content: "↗";
  font-size: 1.3rem;
  justify-self: end;
}

.platform-mark,
.social-grid span {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.listen-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.listen-card small {
  color: rgba(243, 238, 229, 0.68);
  display: block;
  margin-top: 6px;
}

.social-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
}

.social-grid a {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  gap: 10px;
  min-height: 70px;
  padding: 12px;
}

.social-grid strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.listen-card:hover,
.listen-card:focus-visible,
.social-grid a:hover,
.social-grid a:focus-visible {
  outline: 3px solid rgba(22, 199, 223, 0.28);
  outline-offset: 3px;
}

.social-grid a:hover,
.social-grid a:focus-visible {
  background: var(--red);
  color: #fff;
}

.sponsor-wall {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.partner {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    #101114;
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  min-height: 260px;
  padding: 28px;
  place-items: center;
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease;
}

.partner:hover,
.partner:focus-visible {
  border-color: rgba(200, 164, 93, 0.5);
  outline: none;
  transform: translateY(-3px);
}

.partner-logo {
  align-items: center;
  display: flex;
  height: 150px;
  justify-content: center;
  width: 100%;
}

.partner-logo img {
  filter: saturate(1.03) contrast(1.06);
  max-height: 150px;
  max-width: 230px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.partner:hover img,
.partner:focus-visible img {
  transform: scale(1.03);
}

.partner strong {
  color: rgba(243, 238, 229, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.booking {
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.booking-media,
.booking-media img,
.booking-shade {
  inset: 0;
  height: 100%;
  position: absolute;
  width: 100%;
}

.booking-media img {
  object-fit: cover;
  object-position: center 18%;
}

.booking-shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.96), rgba(7, 7, 8, 0.72) 48%, rgba(7, 7, 8, 0.24)),
    linear-gradient(180deg, rgba(7, 7, 8, 0.12), rgba(7, 7, 8, 0.86));
}

.booking-copy {
  max-width: var(--max);
  padding-top: 185px;
  position: relative;
  z-index: 1;
}

.booking-copy h2 {
  max-width: 720px;
}

.booking-copy p {
  color: rgba(243, 238, 229, 0.74);
  max-width: 560px;
}

.site-footer {
  background: #050506;
  border-top: 1px solid var(--line);
  color: rgba(243, 238, 229, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding: 24px 40px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.whatsapp-float {
  align-items: center;
  background: #16a34a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  color: #fff;
  display: inline-flex;
  gap: 10px;
  min-height: 54px;
  padding: 8px 18px 8px 8px;
  position: fixed;
  right: 24px;
  z-index: 70;
}

.whatsapp-float span {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.whatsapp-float strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(22, 199, 223, 0.32);
  outline-offset: 3px;
  transform: translateY(-2px);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow: 0 26px 90px rgba(231, 53, 49, 0.24);
  }
}

@keyframes revealIn {
  from {
    opacity: 0.76;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-body {
  background:
    radial-gradient(circle at 10% 0%, rgba(22, 199, 223, 0.13), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(231, 53, 49, 0.14), transparent 30%),
    var(--bg);
}

.legal-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 24px 36px;
}

.legal-main {
  margin: 0 auto;
  max-width: 980px;
  padding: 24px 36px 80px;
}

.legal-document {
  background: var(--paper);
  color: var(--ink);
  padding: 56px;
}

.legal-document h1 {
  color: var(--ink);
  font-size: 4.8rem;
}

.legal-document h2 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 34px 0 10px;
  text-transform: none;
}

.legal-document p {
  color: rgba(16, 17, 20, 0.76);
}

.legal-document a {
  color: #b91f1b;
  font-weight: 800;
}

.legal-updated {
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 6.6rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .site-header {
    padding-inline: 24px;
  }

  .brand img {
    height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-items: stretch;
    background: rgba(7, 7, 8, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 104px 22px 24px;
    position: fixed;
    right: 0;
    top: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-color: var(--line);
    padding: 14px 16px;
  }

  .hero-inner {
    padding-left: 34px;
    padding-right: 34px;
  }

  .hero-booking {
    left: 34px;
    right: auto;
  }

  .story-layout,
  .story-premium-grid,
  .signature-grid,
  .music-layout,
  .section-head,
  .show-grid,
  .sponsor-wall {
    grid-template-columns: 1fr;
  }

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

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

  .story-media img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .story-cover img {
    aspect-ratio: 1 / 1;
    width: min(100%, 420px);
  }

  .story-milestones {
    grid-template-columns: 1fr;
  }

  .music-photo img {
    height: auto;
    max-height: 520px;
  }

  .music-photo::before {
    inset: 18px -8px -18px 8px;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(3.75rem, 18vw, 4.5rem);
  }

  h2 {
    font-size: 2.55rem;
  }

  h3 {
    font-size: 1.65rem;
  }

  .brand img {
    height: 58px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-inner {
    padding: 160px 20px 260px;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-booking {
    bottom: 24px;
    left: 20px;
    right: 20px;
    width: auto;
  }

  .proof-strip {
    align-items: stretch;
    display: block;
    padding: 16px 20px;
  }

  .proof-track {
    display: grid;
    gap: 10px;
  }

  .proof-strip > a {
    display: inline-flex;
    margin-top: 16px;
  }

  .section-shell {
    padding: 74px 20px;
  }

  .artist-portrait::before {
    display: none;
  }

  .story-media::before {
    display: none;
  }

  .story-cover::before {
    display: none;
  }

  .artist-portrait img {
    height: auto;
  }

  .show-card {
    min-height: auto;
    padding: 24px;
  }

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

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

  .gallery-large {
    grid-row: auto;
  }

  .partner {
    min-height: 178px;
    padding: 20px;
  }

  .partner-logo {
    height: 104px;
  }

  .partner-logo img {
    max-height: 104px;
    max-width: 210px;
  }

  .site-footer {
    display: block;
    padding: 22px 20px;
  }

  .site-footer p + p {
    margin-top: 10px;
  }

  .whatsapp-float {
    bottom: 16px;
    border-radius: 999px;
    gap: 0;
    height: 52px;
    min-height: 50px;
    padding: 7px;
    right: 16px;
    width: 52px;
  }

  .whatsapp-float strong {
    display: none;
  }

  .whatsapp-float span {
    height: 36px;
    width: 36px;
  }

  .legal-header,
  .legal-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-document {
    padding: 28px;
  }

  .legal-document h1 {
    font-size: 2.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
