:root {
  --black: #000;
  --black-soft: #0f0f0f;
  --ink: #0f0f0f;
  --cream: #fff;
  --cream-soft: #a1a1a1;
  --orange: #f04e28;
  --orange-hot: #f24102;
  --lvz-gradient: linear-gradient(135deg, #f04e28 0%, #f24102 100%);
  --grad-anim: linear-gradient(120deg, #f04e28, #ff8a3d, #f24102, #ff7a2b, #f04e28);
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(0, 0, 0, 0.16);
  --glass-bg: rgba(255, 255, 255, 0.055);
  --glass-bg-strong: rgba(15, 15, 15, 0.78);
  --glass-border: rgba(255, 255, 255, 0.1);
  --lvz-glow: 0 0 30px rgba(240, 78, 40, 0.4), 0 0 60px rgba(242, 65, 2, 0.2);
  --display: "Montserrat", system-ui, sans-serif;
  --body: "Montserrat", system-ui, sans-serif;
  --page: min(100% - 40px, 1320px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 8%, rgba(240, 78, 40, 0.13), transparent 30rem),
    radial-gradient(circle at 12% 48%, rgba(242, 65, 2, 0.07), transparent 34rem),
    linear-gradient(180deg, #000 0%, #090503 48%, #000 100%);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  content: "";
  pointer-events: none;
  opacity: 0.17;
  background: repeating-linear-gradient(90deg, transparent 0 2px, rgba(255,255,255,.025) 2px 3px);
  mix-blend-mode: soft-light;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

::selection {
  color: var(--black);
  background: var(--orange);
}

:focus-visible {
  outline: 2px solid var(--orange-hot);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--black);
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: var(--lvz-gradient);
  box-shadow: 0 0 20px rgba(240, 78, 40, 0.72);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 82px;
  padding: 18px max(20px, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid transparent;
  transition: background 280ms ease, border-color 280ms ease, min-height 280ms ease, padding 280ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  padding-block: 10px;
  background: rgba(0, 0, 0, 0.68);
  border-color: var(--glass-border);
  box-shadow: 0 12px 36px rgba(0,0,0,.22);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-logo {
  width: clamp(112px, 9vw, 138px);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.28));
}

.brand-role {
  color: rgba(243, 234, 219, 0.64);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta) {
  position: relative;
  color: rgba(243, 234, 219, 0.74);
  transition: color 180ms ease;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover {
  color: var(--cream);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--black);
  background: var(--lvz-gradient);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(240,78,40,.22);
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  color: var(--cream);
  box-shadow: var(--lvz-glow);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-video,
.hero-wash,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.8) contrast(1.08) brightness(0.68);
  transform: scale(1.025);
}

.hero-wash {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(8,8,8,.95) 0%, rgba(8,8,8,.68) 43%, rgba(8,8,8,.18) 72%, rgba(8,8,8,.42) 100%),
    linear-gradient(180deg, rgba(8,8,8,.2), rgba(8,8,8,.08) 45%, rgba(8,8,8,.9) 100%);
}

.hero-grid {
  z-index: -2;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 11vw 11vw;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.65), transparent 72%);
}

.hero-signature {
  position: absolute;
  right: clamp(30px, 6vw, 94px);
  bottom: clamp(98px, 13vh, 154px);
  z-index: -1;
  width: clamp(210px, 24vw, 390px);
  opacity: .13;
  pointer-events: none;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.32));
  transform: rotate(-4deg);
}

.hero-content {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(96px, 12vh, 140px) 0 clamp(56px, 8vh, 96px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: transparent;
  background: var(--lvz-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.film-caption h2,
.film-caption h3,
.contact-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 1040px;
  margin-inline: auto;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: .92;
}

.hero-title span {
  display: block;
}

.hero-title .accent,
.section-title em,
.film-caption em,
.contact-title span {
  color: transparent;
  background: var(--lvz-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

/* Brilho no "tem nome." do hero — mesmo efeito do botão de WhatsApp (shine + glow). */
.hero-title .accent {
  background: var(--grad-anim);
  background-size: 250% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: hero-accent-shine 5s linear infinite, hero-accent-glow 3.4s ease-in-out infinite;
}

@keyframes hero-accent-shine {
  to { background-position: 250% center; }
}

@keyframes hero-accent-glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(240,78,40,.22)); }
  50% { filter: drop-shadow(0 0 20px rgba(255,138,61,.6)); }
}

.hero-copy {
  max-width: 620px;
  margin: 30px auto 0;
  color: rgba(243, 234, 219, .76);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

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

.button {
  min-height: 54px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--lvz-gradient);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 0 26px rgba(240,78,40,.24);
}

.button-primary:hover {
  box-shadow: var(--lvz-glow);
}

.button-ghost {
  color: var(--cream);
  background: rgba(8,8,8,.22);
  border-color: rgba(243,234,219,.46);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--cream);
}

.hero-side-note {
  position: absolute;
  right: 22px;
  bottom: 92px;
  color: rgba(243,234,219,.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  right: max(68px, calc((100vw - 1320px) / 2));
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(243,234,219,.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 55px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: cue 2s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: scaleX(.35); opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
}

.artist-marquee {
  overflow: hidden;
  color: var(--black);
  background: var(--orange);
  border-top: 1px solid rgba(8,8,8,.25);
  border-bottom: 1px solid rgba(8,8,8,.25);
}

.marquee-track {
  width: max-content;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: .02em;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}

.marquee-track b {
  font-family: var(--body);
  font-size: 11px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  width: var(--page);
  margin: 0 auto;
}

.section-number {
  color: rgba(243,234,219,.24);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}

.marquee-track,
.artist-backdrop-word,
.photo-stamp,
.performance-type,
.performance-manifesto,
.contact-backdrop-word {
  font-weight: 900;
}

.artist-section {
  position: relative;
  padding: clamp(86px, 9vw, 136px) 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255,255,255,.1), transparent 38%),
    var(--lvz-gradient);
  overflow: hidden;
  isolation: isolate;
}

.artist-section::before {
  position: absolute;
  inset: -14%;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .12;
  background-image: url("levizim-logo.png");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: clamp(118px, 12vw, 178px) auto;
  transform: rotate(-9deg);
}

.artist-backdrop-word {
  position: absolute;
  top: -.22em;
  left: -.035em;
  z-index: -1;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(210px, 29vw, 470px);
  line-height: 1;
  letter-spacing: -.045em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(8,8,8,.19);
  opacity: .75;
}

.artist-stage {
  position: relative;
  width: var(--page);
  min-height: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: 20px;
}

.artist-visual {
  position: relative;
  grid-column: 1 / 8;
  grid-row: 1 / 4;
  height: 850px;
  margin: 0;
  overflow: hidden;
  background: var(--black-soft);
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
}

.artist-visual::before {
  position: absolute;
  inset: 15px 9% 15px 15px;
  z-index: 2;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(243,234,219,.28);
}

.artist-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(.78) contrast(1.08) brightness(.85);
  transition: transform 900ms cubic-bezier(.2,.72,.2,1);
}

.artist-visual:hover img {
  transform: scale(1.025);
}

.artist-visual figcaption {
  position: absolute;
  bottom: 34px;
  left: 34px;
  z-index: 4;
  padding: 13px 16px;
  display: grid;
  color: var(--cream);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  backdrop-filter: blur(18px);
}

.artist-visual figcaption span,
.artist-visual figcaption small {
  color: rgba(243,234,219,.58);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.artist-visual figcaption strong {
  margin: 2px 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.photo-stamp {
  position: absolute;
  top: 48px;
  right: auto;
  left: 42px;
  z-index: 4;
  width: 116px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(0,0,0,.76);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
  line-height: .95;
  text-align: center;
  transform: rotate(8deg);
}

.section-title {
  max-width: 980px;
  font-size: clamp(46px, 5.7vw, 84px);
  line-height: .98;
}

.artist-headline {
  position: relative;
  z-index: 5;
  grid-column: 6 / 13;
  grid-row: 1;
  align-self: start;
  padding-top: 52px;
}

.artist-headline .eyebrow {
  color: var(--black);
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
}

.artist-headline .section-title {
  max-width: 850px;
  color: var(--cream);
  font-size: clamp(48px, 5.7vw, 84px);
  line-height: 1;
  text-shadow: 0 12px 35px rgba(8,8,8,.24);
}

.artist-headline .section-title em {
  padding: 0 .07em;
  color: var(--black);
  background: rgba(255,255,255,.94);
  background-clip: border-box;
  -webkit-background-clip: border-box;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-shadow: none;
  line-height: 1.05;
}

.artist-copy-card {
  position: relative;
  z-index: 5;
  grid-column: 7 / 13;
  grid-row: 2;
  align-self: end;
  padding: clamp(28px, 3.4vw, 48px);
  color: var(--cream);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
  backdrop-filter: blur(22px);
}

.artist-card-index {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.artist-copy-card .lead {
  margin-top: 22px;
  color: var(--cream);
  font-size: clamp(17px, 1.55vw, 22px);
}

.artist-copy-card .body-copy {
  color: var(--cream-soft);
}

.lead {
  margin: 34px 0 0;
  color: var(--cream);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.5;
}

.body-copy {
  margin: 24px 0 0;
  color: rgba(243,234,219,.62);
  line-height: 1.8;
}

.artist-stats {
  position: relative;
  z-index: 5;
  grid-column: 7 / 13;
  grid-row: 3;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--cream);
  background: rgba(15,15,15,.76);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.artist-stats div {
  min-width: 0;
  padding: 22px 18px;
}

.artist-stats div + div {
  border-left: 1px solid var(--line);
}

.artist-stats strong,
.artist-stats span {
  display: block;
}

.artist-stats strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 900;
  line-height: 1;
}

.artist-stats span {
  margin-top: 8px;
  color: rgba(243,234,219,.56);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.experience-section {
  position: relative;
  padding: 30px 0 clamp(90px, 10vw, 150px);
}

.experience-section::before {
  position: absolute;
  inset: 8% -12vw 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 34%, rgba(240,78,40,.14), transparent 30rem),
    radial-gradient(circle at 82% 76%, rgba(242,65,2,.08), transparent 28rem);
}

.experience-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 54px;
}

.experience-intro {
  margin: 0 0 7px;
  color: rgba(243,234,219,.62);
}

.experience-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .45fr);
  min-height: 720px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

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

.scene-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 58%, rgba(8,8,8,.74));
  pointer-events: none;
}

.scene-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.055);
  transition: opacity 600ms ease, transform 1100ms cubic-bezier(.2,.7,.2,1);
}

.scene-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.scene-counter {
  position: absolute;
  bottom: 25px;
  left: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 17px;
}

.scene-counter i {
  width: 42px;
  height: 1px;
  background: rgba(243,234,219,.65);
}

.scene-controls {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.scene-button {
  position: relative;
  min-width: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  color: rgba(243,234,219,.45);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: color 220ms ease, background 220ms ease;
}

.scene-button:last-child {
  border-bottom: 0;
}

.scene-button::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--orange);
  transform: scaleY(0);
  transition: transform 260ms ease;
}

.scene-button:hover,
.scene-button.is-active {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(240,78,40,.16), rgba(242,65,2,.03)),
    rgba(255,255,255,.025);
}

.scene-button.is-active::before {
  transform: scaleY(1);
}

.scene-button small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.scene-button strong {
  align-self: stretch;
  font-family: var(--display);
  font-size: clamp(26px, 2.9vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.scene-button span {
  max-width: 250px;
  color: inherit;
  font-size: 12px;
  line-height: 1.55;
}

.performance-cut {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 0 clamp(100px, 11vw, 165px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 32%, rgba(242,74,24,.2), transparent 28rem),
    linear-gradient(180deg, var(--black) 0%, #0e0907 48%, var(--black) 100%);
  border-top: 1px solid var(--line);
}

.performance-cut::before {
  position: absolute;
  top: 10%;
  right: -12%;
  width: 55vw;
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(242,74,24,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(242,74,24,.025), 0 0 0 16vw rgba(242,74,24,.018);
}

.performance-heading {
  position: relative;
  z-index: 5;
  margin-bottom: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.performance-heading .section-title {
  max-width: 1040px;
  font-size: clamp(46px, 5.7vw, 84px);
}

.performance-intro {
  margin: 0 0 10px;
  color: rgba(243,234,219,.66);
  font-size: clamp(16px, 1.5vw, 20px);
}

.performance-collage {
  position: relative;
  width: min(100% - 20px, 1600px);
  min-height: clamp(760px, 70vw, 1080px);
  margin: 0 auto;
  isolation: isolate;
}

.performance-wide,
.performance-portrait {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--black-soft);
  box-shadow: 0 34px 90px rgba(0,0,0,.48);
}

.performance-wide {
  inset: 8% 14% 9% 2%;
  z-index: 1;
  border: 1px solid rgba(243,234,219,.18);
}

.performance-portrait {
  top: 0;
  right: 4%;
  z-index: 4;
  width: clamp(280px, 27vw, 430px);
  height: 73%;
  border: 8px solid var(--cream);
}

.performance-wide img,
.performance-portrait img {
  width: 100%;
  height: calc(100% + 110px);
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, var(--scroll-y, 0px), 0) scale(1.08);
}

.performance-wide img {
  object-position: center;
  filter: saturate(.92) contrast(1.06) brightness(.82);
}

.performance-portrait img {
  object-position: center 20%;
  filter: saturate(.84) contrast(1.08);
}

.performance-wide::after,
.performance-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.performance-wide::after {
  background:
    linear-gradient(90deg, rgba(8,8,8,.22), transparent 50%, rgba(8,8,8,.12)),
    linear-gradient(0deg, rgba(8,8,8,.68), transparent 40%);
}

.performance-portrait::after {
  border: 1px solid rgba(8,8,8,.3);
  box-shadow: inset 0 0 70px rgba(8,8,8,.18);
}

.performance-wide figcaption,
.performance-portrait figcaption {
  position: absolute;
  z-index: 3;
  color: var(--cream);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.performance-wide figcaption {
  bottom: 22px;
  left: 24px;
}

.performance-portrait figcaption {
  right: 15px;
  bottom: 17px;
  left: 15px;
  color: var(--black);
  text-align: center;
  text-shadow: 0 1px rgba(243,234,219,.55);
}

.performance-type {
  position: absolute;
  top: 3%;
  left: -1.5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(92px, 13vw, 210px);
  line-height: .72;
  letter-spacing: -.02em;
  -webkit-text-stroke: 1px rgba(243,234,219,.25);
  pointer-events: none;
  transform: rotate(-3deg);
}

.performance-stamp {
  position: absolute;
  right: 25%;
  bottom: 6%;
  z-index: 6;
  width: clamp(150px, 15vw, 230px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--black);
  background: var(--orange);
  border-radius: 50%;
  text-align: center;
  transform: rotate(8deg);
}

.performance-stamp span,
.performance-stamp strong {
  display: block;
  line-height: .95;
}

.performance-stamp span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.performance-stamp strong {
  font-family: var(--display);
  font-size: clamp(29px, 3.1vw, 48px);
  font-weight: 900;
}

.performance-manifesto {
  position: absolute;
  bottom: 0;
  left: 6%;
  z-index: 5;
  margin: 0;
  padding: 20px 25px 22px;
  color: var(--black);
  background: var(--cream);
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: .93;
  text-transform: uppercase;
  box-shadow: 18px 18px 0 var(--orange);
}

[data-hero-shift] {
  will-change: transform;
  transform: translate3d(var(--scroll-x, 0px), 0, 0);
}

.film-story {
  position: relative;
  min-height: 400vh;
  min-height: 400svh;
  isolation: isolate;
  background: #050505;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.film-sticky {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.film-media,
.film-video,
.film-grade,
.film-light-sweep {
  position: absolute;
  inset: 0;
}

.film-media {
  z-index: -4;
  background: #050505;
}

.film-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(.82) contrast(1.1) brightness(.66);
  transform: scale(1.055);
  transition:
    opacity 900ms cubic-bezier(.2,.72,.2,1),
    transform 1600ms cubic-bezier(.2,.72,.2,1);
}

.film-video[data-film-video="0"] {
  object-position: center 44%;
}

.film-video[data-film-video="1"] {
  object-position: center 42%;
}

.film-video[data-film-video="2"] {
  object-position: center 25%;
}

.film-video[data-film-video="3"] {
  object-position: center 32%;
}

.film-video.is-active {
  opacity: 1;
  transform: scale(1.01);
  animation: film-wipe 1100ms cubic-bezier(.16, .84, .28, 1);
}

/* Troca de vídeo com "swipe" digital + estalo de brilho — pegada futurística. */
@keyframes film-wipe {
  0% {
    clip-path: inset(0 0 0 100%);
    filter: saturate(.4) contrast(1.5) brightness(.4);
  }
  55% {
    filter: saturate(.9) contrast(1.22) brightness(.78);
  }
  100% {
    clip-path: inset(0 0 0 0);
    filter: saturate(.82) contrast(1.1) brightness(.66);
  }
}

.film-grade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5,5,5,.86) 0%, rgba(5,5,5,.22) 49%, rgba(5,5,5,.52) 100%),
    linear-gradient(180deg, rgba(5,5,5,.5), transparent 30%, transparent 62%, rgba(5,5,5,.92) 100%);
}

.film-light-sweep {
  z-index: -2;
  right: auto;
  left: -28%;
  width: 34vw;
  opacity: .14;
  background: linear-gradient(90deg, transparent, rgba(255,90,34,.78), transparent);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: skewX(-12deg);
  animation: film-sweep 9s ease-in-out infinite;
}

.film-signature {
  position: absolute;
  top: clamp(88px, 11vh, 128px);
  right: clamp(20px, 4vw, 72px);
  width: clamp(132px, 14vw, 226px);
  opacity: .34;
  pointer-events: none;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.48));
}

/* ===== HUD futurístico da seção de vídeos ===== */
.film-scan {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .55;
  background: linear-gradient(180deg, transparent, rgba(255, 120, 60, .5) 48%, rgba(255, 120, 60, .9) 50%, rgba(255, 120, 60, .5) 52%, transparent);
  background-size: 100% 42vh;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  animation: film-scan 6.5s linear infinite;
}

@keyframes film-scan {
  0% { background-position: 0 -46vh; }
  100% { background-position: 0 118vh; }
}

.film-hud {
  position: absolute;
  inset: clamp(74px, 9vh, 108px) clamp(18px, 4vw, 64px) clamp(74px, 9vh, 108px);
  z-index: 1;
  pointer-events: none;
}

.film-hud-corner {
  position: absolute;
  width: clamp(26px, 3vw, 40px);
  height: clamp(26px, 3vw, 40px);
  border: 2px solid var(--orange);
  opacity: .78;
  box-shadow: 0 0 16px rgba(242, 74, 24, .5);
  animation: film-hud-breathe 3.4s ease-in-out infinite;
}

.film-hud-corner--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.film-hud-corner--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.film-hud-corner--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.film-hud-corner--br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

@keyframes film-hud-breathe {
  0%, 100% { opacity: .5; }
  50% { opacity: .95; }
}

.film-live {
  position: absolute;
  top: -2px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  transform: translateX(-50%);
  color: var(--cream);
  background: rgba(5, 5, 5, .42);
  border: 1px solid rgba(242, 74, 24, .55);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.film-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(242, 74, 24, .9);
  animation: film-live-blink 1.5s steps(1, end) infinite;
}

@keyframes film-live-blink {
  0%, 55% { opacity: 1; }
  56%, 100% { opacity: .2; }
}

/* ===== Seção "A voz" — microfone sticky + legendas no scroll ===== */
.mic-story {
  position: relative;
  min-height: 300vh;
  min-height: 300svh;
  isolation: isolate;
  background: #050505;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mic-sticky {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.mic-video,
.mic-grade,
.mic-scan {
  position: absolute;
  inset: 0;
}

.mic-video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.82) contrast(1.1) brightness(.62);
  transform:
    translate3d(0, calc((var(--mic-p, .5) - .5) * 9%), 0)
    rotate(calc((var(--mic-p, .5) - .5) * 5deg))
    scale(1.16);
  will-change: transform;
}

.mic-grade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,5,5,.82) 0%, rgba(5,5,5,.24) 50%, rgba(5,5,5,.6) 100%),
    linear-gradient(180deg, rgba(5,5,5,.5), transparent 32%, transparent 60%, rgba(5,5,5,.92) 100%);
}

.mic-scan {
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background: linear-gradient(180deg, transparent, rgba(255,120,60,.5) 48%, rgba(255,120,60,.9) 50%, rgba(255,120,60,.5) 52%, transparent);
  background-size: 100% 42vh;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  animation: film-scan 6.5s linear infinite;
}

.mic-hud {
  position: absolute;
  inset: clamp(74px, 9vh, 108px) clamp(18px, 4vw, 64px) clamp(74px, 9vh, 108px);
  z-index: 1;
  pointer-events: none;
}

.mic-index {
  position: absolute;
  right: clamp(22px, 4vw, 68px);
  bottom: clamp(28px, 5vh, 58px);
  z-index: 2;
  width: min(270px, 26vw);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  color: rgba(243,234,219,.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.mic-index i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(243,234,219,.28);
}

.mic-index b {
  position: absolute;
  inset: 0 auto 0 0;
  width: 33%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(242,74,24,.6);
  transition: width 700ms cubic-bezier(.2,.72,.2,1);
}

.mic-steps {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.mic-step {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(110px, 13vh, 156px) max(20px, calc((100vw - 1320px) / 2)) clamp(86px, 11vh, 132px);
  display: grid;
  align-items: center;
}

.mic-caption {
  max-width: min(880px, 74vw);
  opacity: .1;
  filter: blur(6px);
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 70px, 0);
  transition:
    opacity 600ms ease,
    filter 750ms ease,
    clip-path 900ms cubic-bezier(.2,.72,.2,1),
    transform 900ms cubic-bezier(.2,.72,.2,1);
}

.mic-step.is-active .mic-caption {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0);
  transform: translate3d(0, 0, 0);
}

.mic-caption::before {
  width: 84px;
  height: 4px;
  margin-bottom: 24px;
  display: block;
  content: "";
  background: var(--orange);
  box-shadow: 90px 0 0 rgba(242,74,24,.32);
}

.mic-caption p {
  margin: 0 0 18px;
  color: var(--orange-hot);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.mic-caption h2,
.mic-caption h3 {
  margin: 0;
  max-width: 1020px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  font-size: clamp(44px, 5.8vw, 86px);
  line-height: .94;
  text-wrap: balance;
}

.mic-caption em {
  color: transparent;
  background: var(--lvz-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.mic-caption > span {
  max-width: 620px;
  margin-top: 28px;
  display: inline-block;
  color: rgba(243,234,219,.74);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.65;
}

@media (max-width: 820px) {
  .mic-story {
    min-height: 280vh;
    min-height: 280svh;
  }

  .mic-caption h2,
  .mic-caption h3 {
    font-size: clamp(46px, 11vw, 88px);
  }
}

@media (max-width: 560px) {
  .mic-caption h2,
  .mic-caption h3 {
    font-size: clamp(38px, 11.5vw, 54px);
  }

  .mic-hud .film-live {
    display: none;
  }

  .mic-index {
    right: 15px;
    bottom: 23px;
    width: 170px;
  }
}

.film-index {
  position: absolute;
  right: clamp(22px, 4vw, 68px);
  bottom: clamp(28px, 5vh, 58px);
  width: min(270px, 26vw);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  color: rgba(243,234,219,.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.film-index i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(243,234,219,.28);
}

.film-index b {
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(242,74,24,.6);
  transition: width 700ms cubic-bezier(.2,.72,.2,1);
}

.film-control {
  position: absolute;
  top: clamp(90px, 11vh, 130px);
  left: clamp(20px, 4vw, 68px);
  min-height: 42px;
  padding: 8px 13px 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(243,234,219,.78);
  background: rgba(5,5,5,.38);
  border: 1px solid rgba(243,234,219,.24);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.film-control:hover {
  color: var(--cream);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.film-control i {
  position: relative;
  width: 25px;
  height: 25px;
  display: block;
  background: var(--orange);
  border-radius: 50%;
}

.film-control i::before,
.film-control i::after {
  position: absolute;
  top: 8px;
  width: 2px;
  height: 9px;
  content: "";
  background: var(--black);
}

.film-control i::before {
  left: 9px;
}

.film-control i::after {
  right: 9px;
}

.film-control.is-paused i::before {
  top: 7px;
  left: 10px;
  width: 0;
  height: 0;
  background: transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--black);
}

.film-control.is-paused i::after {
  display: none;
}

.film-steps {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.film-step {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(110px, 13vh, 156px) max(20px, calc((100vw - 1320px) / 2)) clamp(86px, 11vh, 132px);
  display: grid;
  align-items: center;
}

.film-step--right {
  justify-items: end;
  text-align: right;
}

.film-step--center {
  justify-items: center;
  text-align: center;
}

.film-caption {
  position: relative;
  max-width: min(940px, 72vw);
  opacity: .1;
  filter: blur(6px);
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 78px, 0) rotate(.7deg);
  transition:
    opacity 600ms ease,
    filter 750ms ease,
    clip-path 900ms cubic-bezier(.2,.72,.2,1),
    transform 900ms cubic-bezier(.2,.72,.2,1);
}

.film-step--right .film-caption {
  transform: translate3d(54px, 70px, 0) rotate(-.7deg);
}

.film-step--center .film-caption {
  max-width: min(1040px, 82vw);
  transform: translate3d(0, 70px, 0) scale(.94);
}

.film-step.is-active .film-caption {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0);
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.film-caption::before {
  width: 84px;
  height: 4px;
  margin-bottom: 24px;
  display: block;
  content: "";
  background: var(--orange);
  box-shadow: 90px 0 0 rgba(242,74,24,.32);
}

.film-step--right .film-caption::before {
  margin-left: auto;
}

.film-step--center .film-caption::before {
  margin-inline: auto;
}

.film-caption p {
  margin: 0 0 18px;
  color: var(--orange-hot);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.film-caption h2,
.film-caption h3 {
  max-width: 1020px;
  font-size: clamp(48px, 6.4vw, 94px);
  line-height: .94;
  text-wrap: balance;
}

.film-caption > span {
  max-width: 650px;
  margin-top: 28px;
  display: inline-block;
  color: rgba(243,234,219,.74);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.65;
}

@keyframes film-sweep {
  0%, 18% {
    opacity: 0;
    transform: translateX(0) skewX(-12deg);
  }
  45% {
    opacity: .17;
  }
  72%, 100% {
    opacity: 0;
    transform: translateX(165vw) skewX(-12deg);
  }
}

.music-section {
  position: relative;
  padding: clamp(70px, 8vw, 112px) clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(40px, 5vw, 82px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  box-shadow: 0 26px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(20px);
}

.music-section > .section-number {
  display: none;
}

#destination {
  background:
    linear-gradient(180deg, rgba(11,8,7,.9) 0%, rgba(11,8,7,.82) 48%, rgba(11,8,7,.93) 100%),
    url("festa-energia.jpg") center / cover no-repeat;
}

.music-copy .section-title {
  font-size: clamp(38px, 4.2vw, 58px);
}

.platform-links {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-links a {
  min-width: 142px;
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.platform-links a:hover {
  color: var(--black);
  background: var(--lvz-gradient);
  border-color: transparent;
  box-shadow: 0 0 24px rgba(240,78,40,.25);
}

.song-list {
  border-top: 1px solid var(--line);
}

.song-list article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms ease, color 200ms ease;
}

.song-list article:hover {
  padding-left: 12px;
  color: var(--orange);
}

.song-list article > span {
  color: rgba(243,234,219,.32);
  font-size: 10px;
  font-weight: 800;
}

.song-list strong,
.song-list small {
  display: block;
}

.song-list strong {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.song-list small {
  margin-top: 5px;
  color: rgba(243,234,219,.48);
  font-size: 11px;
}

.gallery-section {
  padding-top: clamp(72px, 9vw, 130px);
  padding-bottom: clamp(90px, 10vw, 150px);
  overflow: hidden;
}

.gallery-heading {
  padding-bottom: 58px;
}

.gallery-grid {
  width: min(100% - 20px, 1600px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(170px, 22vw);
  gap: 8px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--black-soft);
}

.gallery-item:nth-child(1) {
  grid-column: span 8;
}

.gallery-item:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 6;
}

.gallery-item:nth-child(6) {
  grid-column: span 6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.04);
  transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 350ms ease;
}

.gallery-item:nth-child(2) img {
  object-position: center 20%;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.02);
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(transparent, rgba(8,8,8,.76));
}

.gallery-item figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 2;
  color: rgba(243,234,219,.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.testimonials-section {
  padding: 40px 0 clamp(90px, 10vw, 150px);
}

.testimonial-heading {
  max-width: 980px;
}

.testimonial-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: clamp(35px, 5vw, 72px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: 0 22px 64px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}

.testimonial-grid blockquote + blockquote {
  border-left: 1px solid var(--glass-border);
}

.testimonial-grid p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 600;
  line-height: 1.45;
}

.testimonial-grid footer {
  margin-top: 38px;
}

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

.testimonial-grid strong {
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
}

.testimonial-grid span {
  margin-top: 4px;
  color: rgba(243,234,219,.44);
  font-size: 10px;
  text-transform: uppercase;
}

.testimonial-marquee {
  margin-top: 56px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.testimonial-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 22px;
  padding: 10px 11px;
  animation: testimonial-marquee 52s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-track blockquote {
  flex: 0 0 clamp(300px, 82vw, 460px);
  margin: 0;
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: 0 22px 64px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}

.testimonial-track p {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1.5;
}

.testimonial-track footer {
  margin-top: 30px;
}

.testimonial-track strong {
  display: block;
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
}

.testimonial-track span {
  display: block;
  margin-top: 4px;
  color: rgba(243,234,219,.44);
  font-size: 10px;
  text-transform: uppercase;
}

@keyframes testimonial-marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.contact-section {
  position: relative;
  padding: clamp(86px, 10vw, 138px) max(20px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .74fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  color: var(--cream);
  background: #0b0807;
  overflow: hidden;
  isolation: isolate;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.77) 48%, rgba(8,8,8,.52) 100%),
    linear-gradient(180deg, rgba(8,8,8,.26), rgba(8,8,8,.86)),
    url("levizim-show-wide-web.jpg") center 42% / cover no-repeat;
  filter: saturate(.82) contrast(1.08);
  transform: scale(1.025);
}

.contact-section::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 18%, rgba(242,74,24,.42), transparent 30rem),
    linear-gradient(120deg, transparent 0 63%, rgba(242,74,24,.14) 63% 64%, transparent 64% 100%);
  mix-blend-mode: screen;
}

.contact-backdrop-word {
  position: absolute;
  right: -.04em;
  bottom: -.22em;
  z-index: -1;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(170px, 23vw, 360px);
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(243,234,219,.14);
}

.contact-signature {
  position: absolute;
  top: clamp(26px, 4vw, 58px);
  right: max(20px, calc((100vw - 1320px) / 2));
  z-index: 0;
  width: clamp(108px, 10vw, 156px);
  opacity: .34;
  pointer-events: none;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy .eyebrow {
  color: var(--orange-hot);
}

.contact-title {
  max-width: 760px;
  color: var(--cream);
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: .96;
  text-wrap: balance;
}

.contact-title span {
  color: var(--orange);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 30px;
  color: rgba(243,234,219,.8);
}

.contact-meta {
  margin-top: 45px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 35px;
  border-top: 1px solid var(--line);
  color: rgba(243,234,219,.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-form {
  padding: clamp(26px, 3vw, 40px);
  color: var(--cream);
  background: rgba(8,8,8,.78);
  border: 1px solid rgba(243,234,219,.19);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.44);
  backdrop-filter: blur(18px);
  align-self: start;
}

.form-heading {
  margin-bottom: 30px;
  padding-bottom: 22px;
  display: grid;
  gap: 5px;
  border-bottom: 1px solid rgba(243,234,219,.18);
}

.form-heading span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
}

.form-heading strong {
  max-width: 430px;
  font-family: var(--display);
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-form label {
  min-width: 0;
  display: block;
  color: rgba(243,234,219,.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label + label,
.contact-form .field-row + label,
.contact-form label + .field-row {
  margin-top: 19px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  margin-top: 8px;
  padding: 12px 10px;
  color: var(--cream);
  background: rgba(243,234,219,.05);
  border: 1px solid rgba(243,234,219,.25);
  border-radius: 12px;
  outline: 0;
  font-size: 14px;
  text-transform: none;
  transition: border-color 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: rgba(243,234,219,.06);
}

.contact-form select option {
  color: var(--cream);
  background: var(--black);
}

.contact-form textarea {
  min-height: 108px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  min-height: 60px;
  margin-top: 28px;
  padding: 15px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  background: var(--lvz-gradient);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(240,78,40,.22);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.form-submit:hover {
  box-shadow: var(--lvz-glow);
}

.form-submit b {
  font-size: 19px;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(243,234,219,.48);
  font-size: 9px;
  line-height: 1.5;
}

.site-footer {
  padding: 45px max(20px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  background: var(--black);
  border-top: 1px solid var(--line);
  color: rgba(243,234,219,.44);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-brand {
  width: 112px;
  display: block;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--orange);
}

.whatsapp-float {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 998;
  width: 52px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--grad-anim);
  background-size: 250% auto;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(242,65,2,.42);
  animation: gshift 4s linear infinite, wa-glow 3.2s ease-in-out infinite;
  transition: transform .2s ease;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@keyframes gshift {
  to {
    background-position: 250% center;
  }
}

/* Brilho pulsante do botão de WhatsApp — halo respirando na cor do Levizim. */
@keyframes wa-glow {
  0%, 100% {
    box-shadow: 0 0 22px rgba(240,78,40,.42), 0 0 52px rgba(242,65,2,.22);
  }
  50% {
    box-shadow: 0 0 40px rgba(255,138,61,.7), 0 0 96px rgba(242,65,2,.42);
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(.2,.72,.2,1);
}

.js .reveal[data-reveal="left"] {
  transform: translate3d(-46px, 18px, 0) rotate(-.7deg);
}

.js .reveal[data-reveal="right"] {
  transform: translate3d(48px, 22px, 0) rotate(.7deg);
}

.js .reveal[data-reveal="scale"] {
  transform: translateY(22px) scale(.94);
}

.js .reveal[data-reveal="clip"],
.js .reveal[data-reveal="clip-reverse"] {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transform: scale(1.035);
  transition:
    clip-path 1000ms cubic-bezier(.2,.72,.2,1),
    transform 1100ms cubic-bezier(.2,.72,.2,1);
}

.js .reveal[data-reveal="clip-reverse"] {
  clip-path: inset(0 0 0 100%);
}

.js .reveal[data-reveal="tilt"] {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(34px, 54px, 0) rotate(3deg) scale(.94);
  transition:
    opacity 700ms ease,
    filter 900ms ease,
    transform 1000ms cubic-bezier(.2,.72,.2,1);
}

.js .reveal[data-reveal-delay="1"] {
  transition-delay: 110ms;
}

.js .reveal[data-reveal-delay="2"] {
  transition-delay: 220ms;
}

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

.js .reveal[data-reveal="clip"].is-visible,
.js .reveal[data-reveal="clip-reverse"].is-visible {
  clip-path: inset(0);
  transform: scale(1);
}

.js .reveal[data-reveal="tilt"].is-visible {
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.js .performance-stamp.reveal[data-reveal="scale"] {
  transform: rotate(8deg) scale(.78);
}

.js .performance-stamp.reveal.is-visible {
  transform: rotate(8deg) scale(1);
}

@media (max-width: 1050px) {
  .music-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .artist-stage {
    min-height: 760px;
  }

  .artist-visual {
    height: 760px;
  }

  .artist-headline {
    grid-column: 6 / 13;
  }

  .artist-copy-card,
  .artist-stats {
    grid-column: 7 / 13;
  }

  .experience-heading {
    grid-template-columns: 1fr;
  }

  .experience-intro {
    max-width: 700px;
  }

  .performance-heading {
    grid-template-columns: 1fr;
  }

  .performance-intro {
    max-width: 720px;
  }

  .performance-collage {
    min-height: clamp(720px, 91vw, 960px);
  }

  .performance-portrait {
    right: 2%;
    width: clamp(270px, 34vw, 390px);
  }

  .contact-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .contact-copy {
    max-width: 860px;
  }

  .contact-form {
    width: min(100%, 760px);
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
  }

  .site-footer > span:last-child {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 30px, 1320px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 15px;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

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

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

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    padding: 110px 25px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: rgba(8,8,8,.98);
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    contain: paint;
    transform: translate3d(100%, 0, 0);
    transition: transform 300ms cubic-bezier(.2,.7,.2,1), visibility 0s linear 300ms;
  }

  .main-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .main-nav .nav-cta {
    margin-top: 24px;
    padding-inline: 18px;
    color: var(--black);
    font-family: var(--body);
    font-size: 12px;
    font-weight: 800;
  }

  .hero-content {
    padding: 104px 0 54px;
  }

  .hero-video {
    object-position: 61% center;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(8,8,8,.9), rgba(8,8,8,.28)),
      linear-gradient(180deg, rgba(8,8,8,.18), rgba(8,8,8,.3) 42%, rgba(8,8,8,.96));
  }

  .hero-side-note,
  .scroll-cue {
    display: none;
  }

  .artist-section {
    padding: 70px 0 76px;
  }

  .artist-section::before {
    background-size: 42vw auto;
  }

  .artist-backdrop-word {
    top: -.03em;
    left: -.02em;
    font-size: 43vw;
    -webkit-text-stroke-color: rgba(8,8,8,.15);
  }

  .artist-stage {
    min-height: 0;
    display: block;
  }

  .artist-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  }

  .artist-visual::before {
    inset: 11px;
  }

  .artist-visual img {
    object-position: center 20%;
  }

  .artist-visual figcaption {
    top: 20px;
    bottom: auto;
    left: 20px;
  }

  .artist-headline {
    margin: 20px 12px 0;
    padding: 0;
  }

  .artist-headline .eyebrow {
    color: var(--black);
    text-shadow: none;
  }

  .artist-headline .section-title {
    color: var(--cream);
    font-size: clamp(58px, 15.6vw, 92px);
    line-height: .96;
  }

  .artist-headline .section-title em {
    padding: 0;
    color: var(--black);
    background: transparent;
    line-height: .98;
  }

  .artist-copy-card {
    margin: 28px 0 0;
    padding: 28px 24px;
    box-shadow: 12px 12px 0 rgba(8,8,8,.2);
  }

  .artist-stats {
    margin-top: 12px;
  }

  .artist-stats div {
    padding: 18px 10px;
  }

  .artist-stats strong {
    font-size: clamp(30px, 9vw, 48px);
  }

  .artist-stats span {
    font-size: 8px;
  }

  .photo-stamp {
    top: 24px;
    right: 18px;
    left: auto;
    width: 92px;
    font-size: 16px;
  }

  .experience-section {
    padding: 72px 0 76px;
  }

  .experience-heading {
    margin-bottom: 36px;
  }

  .experience-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .scene-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .scene-media::after {
    background: linear-gradient(0deg, rgba(8,8,8,.52), transparent 45%);
  }

  .scene-controls {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .scene-button {
    min-height: 180px;
    padding: 21px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .scene-button:last-child {
    border-right: 0;
  }

  .scene-button::before {
    inset: 0 0 auto;
    width: auto;
    height: 3px;
    transform: scaleX(0);
  }

  .scene-button.is-active::before {
    transform: scaleX(1);
  }

  .scene-button span {
    display: none;
  }

  .performance-cut {
    padding: 76px 0 84px;
  }

  .performance-heading {
    margin-bottom: 48px;
  }

  .performance-collage {
    width: var(--page);
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr .68fr;
    align-items: end;
    gap: 8px;
  }

  .performance-wide {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .performance-portrait {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    margin-bottom: -18vw;
    border-width: 6px;
  }

  .performance-wide img,
  .performance-portrait img {
    height: 112%;
  }

  .performance-type {
    top: 4%;
    left: -4%;
    font-size: clamp(82px, 21vw, 148px);
  }

  .performance-stamp {
    top: 12px;
    right: auto;
    bottom: auto;
    left: 12px;
    width: clamp(98px, 22vw, 138px);
  }

  .performance-manifesto {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 12vw 12px 0 0;
    padding: 18px 20px;
    font-size: clamp(38px, 9vw, 62px);
    box-shadow: 11px 11px 0 var(--orange);
  }

  .film-caption {
    max-width: min(820px, 84vw);
  }

  .film-story {
    min-height: 340vh;
    min-height: 340svh;
  }

  .film-step {
    min-height: 85vh;
    min-height: 85svh;
  }

  .film-step--right .film-caption,
  .film-step--center .film-caption {
    transform: translate3d(0, 54px, 0);
  }

  .film-caption h2,
  .film-caption h3 {
    font-size: clamp(56px, 11.4vw, 104px);
  }

  .film-step--center .film-caption {
    max-width: 88vw;
  }

  [data-hero-shift] {
    will-change: auto;
    transform: none !important;
  }

  .js .reveal[data-reveal="left"],
  .js .reveal[data-reveal="right"] {
    transform: translate3d(0, 28px, 0);
  }

  .js .reveal[data-reveal="tilt"] {
    transform: translate3d(0, 24px, 0) rotate(0) scale(.97);
  }

  .js .reveal.is-visible,
  .js .reveal.is-visible[data-reveal="left"],
  .js .reveal.is-visible[data-reveal="right"],
  .js .reveal.is-visible[data-reveal="tilt"] {
    transform: none;
  }

  html.js .artist-visual.reveal,
  html.js .artist-headline .reveal {
    opacity: 1 !important;
    filter: none !important;
    clip-path: inset(0) !important;
    transform: none !important;
  }

  html.js .performance-wide.reveal,
  html.js .performance-portrait.reveal {
    opacity: 1 !important;
    filter: none !important;
    clip-path: inset(0) !important;
    transform: none !important;
  }

  html.js .performance-stamp.reveal {
    opacity: 1 !important;
    transform: rotate(8deg) !important;
  }

  html.js .performance-manifesto.reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .music-section {
    padding: 78px 0;
    gap: 38px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 46vw;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 2;
  }

  .testimonial-grid {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .gallery-section {
    padding-bottom: 82px;
  }

  .gallery-heading {
    padding-bottom: 38px;
  }

  .testimonials-section {
    padding: 32px 0 82px;
  }

  .testimonial-grid blockquote + blockquote {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    display: none;
  }

  .contact-section {
    padding: 82px 15px;
    gap: 38px;
  }

  .contact-section::before {
    background:
      linear-gradient(180deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.76) 54%, rgba(8,8,8,.9) 100%),
      url("levizim-show-wide-web.jpg") 45% center / cover no-repeat;
  }

  .contact-signature {
    top: 22px;
    right: 15px;
    width: 104px;
  }

  .contact-backdrop-word {
    right: -.04em;
    bottom: -.1em;
    font-size: 34vw;
  }

  .contact-title {
    max-width: 720px;
    font-size: clamp(54px, 12.5vw, 88px);
  }

  .contact-copy > p:not(.eyebrow) {
    max-width: 620px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .hero-title,
  .section-title,
  .contact-title,
  .form-heading strong,
  .film-caption h2,
  .film-caption h3,
  .mic-caption h2,
  .mic-caption h3 {
    overflow-wrap: break-word;
  }

  .platform-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .platform-links a {
    min-width: 0;
    justify-content: center;
    gap: 5px;
    padding: 12px 8px;
    font-size: 10px;
    letter-spacing: .03em;
  }

  .brand-logo {
    width: 108px;
  }

  .brand-role {
    display: none;
  }

  .hero-signature {
    display: none;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(8,8,8,.68) 0%, rgba(8,8,8,.46) 38%, rgba(8,8,8,.9) 100%),
      linear-gradient(90deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.5) 55%, rgba(8,8,8,.72) 100%);
  }

  .hero-content {
    padding: 100px 0 44px;
  }

  .hero-title {
    font-size: clamp(38px, 13vw, 50px);
    line-height: .9;
  }

  .hero-copy {
    max-width: 95%;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-title,
  .music-copy .section-title {
    font-size: clamp(36px, 12.6vw, 52px);
  }

  .music-copy .section-title {
    font-size: clamp(30px, 10.2vw, 44px);
  }

  .music-section > .section-number {
    display: none;
  }

  .music-section {
    padding: 60px 15px;
  }

  .artist-section {
    padding: 58px 0 68px;
  }

  .artist-stage {
    width: calc(100% - 20px);
  }

  .artist-headline {
    margin: 18px 10px 0;
  }

  .artist-headline .section-title {
    font-size: clamp(52px, 15.2vw, 70px);
  }

  .artist-copy-card {
    padding: 24px 20px;
  }

  .artist-copy-card .lead {
    font-size: 16px;
  }

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

  .artist-stats div + div {
    padding-left: 10px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .artist-stats span {
    overflow-wrap: anywhere;
  }

  .scene-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .scene-controls {
    grid-template-columns: 1fr;
  }

  .scene-button {
    min-height: auto;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scene-button span {
    display: block;
  }

  .performance-heading .section-title {
    font-size: clamp(50px, 15.5vw, 74px);
  }

  .performance-collage {
    min-height: 0;
  }

  .performance-wide {
    right: auto;
    left: auto;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .performance-portrait {
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin-bottom: -22vw;
    border-width: 5px;
  }

  .performance-type {
    top: 6%;
    font-size: 22vw;
  }

  .performance-stamp {
    top: 10px;
    right: auto;
    bottom: auto;
    left: 10px;
    width: 100px;
  }

  .performance-stamp strong {
    font-size: 26px;
  }

  .performance-manifesto {
    right: auto;
    bottom: auto;
    left: auto;
    margin: 15vw 9px 0 0;
    font-size: clamp(34px, 10.4vw, 50px);
    box-shadow: 10px 10px 0 var(--orange);
  }

  .film-step {
    padding: 100px 15px 92px;
  }

  .film-step,
  .film-step--right,
  .film-step--center {
    justify-items: start;
    text-align: left;
  }

  .film-caption,
  .film-step--center .film-caption {
    max-width: 100%;
  }

  .film-caption::before,
  .film-step--right .film-caption::before,
  .film-step--center .film-caption::before {
    margin-left: 0;
  }

  .film-caption h2,
  .film-caption h3 {
    font-size: clamp(47px, 14.2vw, 66px);
  }

  .film-caption > span {
    max-width: 92%;
    font-size: 13px;
  }

  .film-signature {
    top: 82px;
    right: 14px;
    width: 112px;
    opacity: .26;
  }

  .film-control {
    top: 79px;
    left: 12px;
    width: 43px;
    min-height: 43px;
    padding: 8px;
  }

  .film-control [data-film-control-label] {
    display: none;
  }

  .film-index {
    right: 15px;
    bottom: 23px;
    width: 170px;
  }

  .film-video[data-film-video="0"],
  .film-video[data-film-video="2"] {
    object-position: center 25%;
  }

  .gallery-grid {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    aspect-ratio: 16 / 10;
  }

  .gallery-item:nth-child(2) {
    aspect-ratio: 3 / 4;
  }

  .contact-section {
    padding: 70px 15px 76px;
  }

  .contact-title {
    font-size: clamp(36px, 12.4vw, 54px);
  }

  .contact-form {
    padding: 24px 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .field-row label + label {
    margin-top: 19px;
  }

  .site-footer {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .whatsapp-float {
    right: 1.75rem;
    bottom: max(1.75rem, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  [data-hero-shift],
  [data-scroll-shift] {
    transform: none !important;
  }

  .film-light-sweep {
    display: none;
  }

  .film-caption {
    opacity: 1;
    filter: none;
    clip-path: inset(0);
    transform: none;
  }
}
