*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000;
  --white: #fff;
  --ink: #050505;
  --ink-2: #0a0a0a;
  --line: rgba(255,255,255,0.08);
  --soft: rgba(255,255,255,0.58);
  --dim: rgba(255,255,255,0.34);
  --ghost: rgba(255,255,255,0.14);
  --glow-xs: 0 0 6px rgba(255,255,255,0.38);
  --glow-sm: 0 0 10px rgba(255,255,255,0.62), 0 0 26px rgba(255,255,255,0.18);
  --glow-md: 0 0 18px rgba(255,255,255,0.74), 0 0 48px rgba(255,255,255,0.26), 0 0 90px rgba(255,255,255,0.08);
  --glow-lg: 0 0 30px rgba(255,255,255,0.92), 0 0 78px rgba(255,255,255,0.38), 0 0 150px rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; background: var(--black); }

body {
  background:
    radial-gradient(circle at var(--aura-x, 50%) var(--aura-y, 28%), rgba(255,255,255,0.06), transparent 34rem),
    linear-gradient(180deg, #000 0%, #030303 42%, #000 100%);
  color: var(--white);
  font-family: "Pathway Gothic One", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9991;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.14) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
}

a, button { cursor: pointer; }
img, video { max-width: 100%; }

#aura-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

.page {
  position: relative;
  z-index: 1;
}


.intro-veil {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  background: #000;
  animation: introExit 1.4s ease 1.35s forwards;
}

.intro-mark {
  width: min(420px, 66vw);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.8)) drop-shadow(0 0 58px rgba(255,255,255,0.34));
  opacity: 0;
  transform: scale(0.94);
  animation: introMark 1.4s ease forwards;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
}

header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}

.logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 7px rgba(255,255,255,0.72)) drop-shadow(0 0 22px rgba(255,255,255,0.28));
  transition: filter 0.3s, transform 0.3s;
}

.logo:hover .logo-img {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.95)) drop-shadow(0 0 34px rgba(255,255,255,0.46));
}

nav { display: flex; gap: 34px; align-items: center; }

nav a {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s, text-shadow 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease, box-shadow 0.35s;
}

nav a:hover { color: var(--white); text-shadow: var(--glow-xs); }
nav a:hover::after { transform: scaleX(1); box-shadow: var(--glow-xs); }

nav a.nav-important {
  color: rgba(255,255,255,0.86);
  text-shadow: 0 0 8px rgba(255,255,255,0.62), 0 0 24px rgba(255,255,255,0.22);
}

.nav-cta, .btn-neon, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: transparent;
  font-family: "Pathway Gothic One", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s, color 0.35s, background 0.35s;
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 5px;
  border: 1px solid rgba(255,255,255,0.42);
  padding: 10px 25px;
  color: var(--white);
}

.nav-cta:hover {
  border-color: var(--white);
  box-shadow: var(--glow-sm);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--white);
  box-shadow: var(--glow-xs);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: clamp(28px, 9vw, 46px);
  letter-spacing: 8px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.62);
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px 32px 84px;
  position: relative;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.28;
  filter: grayscale(1) contrast(1.35) brightness(0.6);
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -2;
  background:
    radial-gradient(ellipse 46% 30% at 50% 40%, rgba(255,255,255,0.2), transparent 62%),
    radial-gradient(ellipse 64% 48% at 50% 50%, rgba(255,255,255,0.08), transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.08), #000 92%);
  animation: slowBreath 7s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92), transparent 24%, transparent 76%, rgba(0,0,0,0.92)),
    linear-gradient(180deg, rgba(0,0,0,0.24), transparent 42%, #000 100%);
}

.hero-content { max-width: 980px; transform: translateY(var(--hero-shift, 0)); }

.hero-label, .section-label, .multipli-eyebrow {
  font-size: 12px;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.hero-label {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: #fff;
  opacity: 1;
  -webkit-text-stroke: 0.35px rgba(255,255,255,0.86);
  filter: brightness(1.55) saturate(1.12);
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 10px rgba(255,255,255,1),
    0 0 26px rgba(235,242,255,0.94),
    0 0 68px rgba(225,235,255,0.66),
    0 0 138px rgba(200,220,255,0.34);
  animation: fadeUp 1s ease 0.2s both, labelAuraPulse 3.6s ease-in-out 1.2s infinite;
}

.hero-label::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, 120vw);
  height: 128px;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.38), rgba(225,235,255,0.16) 36%, transparent 72%);
  filter: blur(20px);
  opacity: 1;
}

.hero-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: min(360px, 78vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
  box-shadow: 0 0 8px rgba(255,255,255,1), 0 0 30px rgba(225,235,255,0.82);
}

.hero-title {
  font-size: clamp(72px, 15vw, 182px);
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 0.86;
  margin-bottom: 30px;
  text-shadow: var(--glow-md);
  animation: fadeUp 1s ease 0.38s both, titlePulse 4.8s ease-in-out 1.4s infinite;
}

.logo-olio {
  opacity: 1;
}

.hero-slogan {
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.48s both;
}

.hero-address {
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 0 10px rgba(255,255,255,0.72), 0 0 28px rgba(255,255,255,0.28);
  margin-bottom: 42px;
  animation: fadeUp 1s ease 0.58s both;
}

.hero-payoff {
  font-size: clamp(16px, 2vw, 21px);
  letter-spacing: 3px;
  color: rgba(255,255,255,0.66);
  margin: 0 auto 54px;
  max-width: 680px;
  line-height: 1.9;
  animation: fadeUp 1s ease 0.74s both;
}

.hero-cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s ease 0.9s both;
}

.btn-neon, .btn-ghost {
  font-size: 12px;
  letter-spacing: 6px;
  padding: 18px 50px;
}

.btn-neon {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--glow-sm), inset 0 0 24px rgba(255,255,255,0.035);
  text-shadow: 0 0 12px rgba(255,255,255,0.8);
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-lg), inset 0 0 44px rgba(255,255,255,0.075);
  background: rgba(255,255,255,0.045);
}

.btn-ghost {
  color: rgba(255,255,255,0.54);
  border: 1px solid rgba(255,255,255,0.17);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.54);
  box-shadow: var(--glow-xs);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  animation: fadeUp 1s ease 1.15s both;
}

.scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.58), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.opposites-intro {
  position: relative;
  overflow: hidden;
  padding: 104px 40px 112px;
  background:
    radial-gradient(ellipse 64% 62% at 50% 42%, rgba(255,255,255,0.09), transparent 66%),
    linear-gradient(180deg, #000 0%, #030303 50%, #000 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  isolation: isolate;
}

.opposites-intro::before,
.opposites-intro::after,
.opposites-aura {
  content: "";
  position: absolute;
  pointer-events: none;
}

.opposites-intro::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.97), transparent 30%, transparent 70%, rgba(0,0,0,0.97)),
    radial-gradient(ellipse 16% 88% at 50% 48%, rgba(255,255,255,0.22), transparent 72%);
}

.opposites-intro::after {
  left: 50%;
  top: 54px;
  bottom: 54px;
  width: 1px;
  z-index: -1;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.58), transparent);
  box-shadow: 0 0 18px rgba(255,255,255,0.7), 0 0 70px rgba(255,255,255,0.24);
  opacity: 0.9;
}

.opposites-aura {
  width: min(860px, 100vw);
  aspect-ratio: 1;
  left: 50%;
  top: 46%;
  z-index: -1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.17), rgba(255,255,255,0.042) 42%, transparent 72%);
  filter: blur(18px);
  mix-blend-mode: screen;
  animation: slowBreath 8s ease-in-out infinite;
}

.opposites-inner {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.opposites-label {
  margin-bottom: 24px;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  letter-spacing: 10px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,255,255,0.74), 0 0 34px rgba(255,255,255,0.26);
}

.opposites-title {
  max-width: 860px;
  margin: 0 auto 22px;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 0.98;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: var(--glow-md);
}

.opposites-rule {
  width: min(360px, 70vw);
  height: 1px;
  margin: 0 auto 34px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.92), transparent);
  box-shadow: var(--glow-sm);
}

.opposites-copy {
  max-width: 760px;
  margin: 0 auto 42px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.82;
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(255,255,255,0.18);
}

.opposites-bio {
  max-width: 760px;
  margin: 0 auto 42px;
  color: rgba(255,255,255,0.42);
  font-size: 13px;
  line-height: 2;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  text-align: center;
}

.opposites-pairs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  max-width: 900px;
  margin: 0 auto 46px;
}

.opposites-pairs span {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 0 10px;
}

.opposites-pairs span::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  box-shadow: 0 0 12px rgba(255,255,255,0.44);
}

.opposites-pairs b,
.opposites-pairs i {
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1;
}

.opposites-pairs b {
  color: rgba(255,255,255,0.9);
  font-size: clamp(20px, 2.4vw, 31px);
  letter-spacing: 3px;
  text-shadow: var(--glow-sm);
}

.opposites-pairs i {
  color: rgba(255,255,255,0.48);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 2.5px;
}

.critic-quote {
  max-width: 780px;
  margin: 0 auto;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.76);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 2.4px;
  text-shadow: 0 0 12px rgba(255,255,255,0.2);
}

.critic-quote span {
  display: block;
  margin-bottom: 12px;
}

.critic-quote strong {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-shadow:
    0 0 7px rgba(255,255,255,1),
    0 0 24px rgba(255,255,255,0.86),
    0 0 80px rgba(225,235,255,0.48);
}

.manifesto {
  padding: 132px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto::before, .multipli-cta::before, .eventi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at center, rgba(255,255,255,0.04), transparent 72%);
  pointer-events: none;
}

.manifesto-rule {
  width: 1px;
  height: 74px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.48), transparent);
  margin: 0 auto 50px;
}

.manifesto-quote {
  font-size: clamp(26px, 4vw, 50px);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.38;
  max-width: 930px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.9);
}

.manifesto-quote em { font-style: normal; text-shadow: var(--glow-sm); }

.manifesto-sub {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dim);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.section { padding: 112px 0; position: relative; }
.section-label { margin-bottom: 20px; text-align: center; }

.section-title {
  font-size: clamp(38px, 5vw, 62px);
  text-transform: uppercase;
  letter-spacing: 6px;
  text-align: center;
  margin-bottom: 16px;
  text-shadow: 0 0 42px rgba(255,255,255,0.1);
}

.section-divider {
  width: 42px;
  height: 1px;
  background: var(--white);
  margin: 0 auto 64px;
  box-shadow: var(--glow-sm);
}

.unique-works {
  position: relative;
  overflow: hidden;
  padding: 118px 0 126px;
  background:
    radial-gradient(ellipse 54% 62% at 70% 48%, rgba(255,255,255,0.12), transparent 68%),
    linear-gradient(180deg, #000 0%, #050505 46%, #030303 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  isolation: isolate;
}

.unique-works::before,
.unique-works::after,
.unique-works-aura {
  content: "";
  position: absolute;
  pointer-events: none;
}

.unique-works::before {
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.96), transparent 30%, transparent 76%, rgba(0,0,0,0.94)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.032) 0 1px, transparent 1px 10px);
}

.unique-works::after {
  left: 50%;
  top: 56px;
  bottom: 56px;
  z-index: -1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.46), transparent);
  box-shadow: 0 0 22px rgba(255,255,255,0.56), 0 0 84px rgba(255,255,255,0.16);
  opacity: 0.72;
}

.unique-works-aura {
  right: min(6vw, 84px);
  top: 50%;
  z-index: -2;
  width: min(660px, 78vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), rgba(255,255,255,0.052) 42%, transparent 72%);
  filter: blur(22px);
  mix-blend-mode: screen;
  animation: uniqueAuraBreath 8s ease-in-out infinite;
}

.unique-works-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 66px;
  align-items: center;
}

.unique-works-copy .section-label {
  text-align: left;
  color: rgba(255,255,255,0.78);
  text-shadow: var(--glow-xs);
}

.unique-works-title {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-shadow: var(--glow-md);
}

.unique-works-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.78;
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(255,255,255,0.12);
}

.unique-works-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.unique-works-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 9px 18px;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  letter-spacing: 4px;
  line-height: 1.25;
  text-transform: uppercase;
  background: rgba(255,255,255,0.018);
}

.unique-works-visual {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: #070707;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 0 70px rgba(255,255,255,0.11);
  isolation: isolate;
}

.unique-works-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,0.2), transparent 30%),
    linear-gradient(to top, rgba(0,0,0,0.96), rgba(0,0,0,0.08) 56%, rgba(0,0,0,0.42));
  pointer-events: none;
}

.unique-works-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.18) brightness(0.78);
  transition: transform 1s ease, filter 0.55s ease;
}

.unique-works-visual:hover img {
  transform: scale(1.055);
  filter: grayscale(0.55) contrast(1.22) brightness(0.9);
}

.unique-works-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.34);
}

.unique-works-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.44);
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.unique-works-card strong {
  display: block;
  max-width: 360px;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  font-size: clamp(26px, 3.3vw, 42px);
  line-height: 1.08;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: var(--glow-sm);
}

.opere-section { background: #030303; padding-top: 82px; }

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

.opera-item {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 3 / 4;
  text-decoration: none;
  color: var(--white);
  display: block;
  isolation: isolate;
}

.opera-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease, filter 0.5s;
  filter: grayscale(0.1) brightness(0.8) contrast(1.08);
}

.opera-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 rgba(255,255,255,0);
  transition: border-color 0.4s, box-shadow 0.4s;
  pointer-events: none;
}

.opera-item::after {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 1;
  opacity: 0;
  background: radial-gradient(circle at var(--local-x, 50%) var(--local-y, 50%), rgba(255,255,255,0.28), transparent 24%);
  transition: opacity 0.35s;
  pointer-events: none;
}

.opera-item:hover img { transform: scale(1.08); filter: grayscale(0) brightness(1) contrast(1.12); }
.opera-item:hover::before { border-color: rgba(255,255,255,0.24); box-shadow: inset 0 0 34px rgba(255,255,255,0.04); }
.opera-item:hover::after { opacity: 1; }

.opera-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.28) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
}

.opera-idx { font-size: 10px; letter-spacing: 5px; color: rgba(255,255,255,0.34); margin-bottom: 7px; }
.opera-title { font-size: 23px; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 7px; line-height: 1.18; text-shadow: var(--glow-sm); }
.opera-technique { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.48); }
.opera-crit { font-size: 12px; letter-spacing: 1.5px; color: rgba(255,255,255,0.62); margin-top: 10px; font-style: italic; line-height: 1.5; }

.wa-standalone {
  position: relative;
  opacity: 1;
  transform: none;
  text-align: center;
  padding: 70px 24px 76px;
  background: #020202;
  overflow: hidden;
}

.wa-standalone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, 95vw);
  height: 260px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1), rgba(255,255,255,0.025) 48%, transparent 74%);
  filter: blur(10px);
  pointer-events: none;
}

.wa-txt {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 1.8vw, 17px);
  letter-spacing: 0.13em;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.7;
  text-shadow: 0 0 4px rgba(255,255,255,0.9), 0 0 12px rgba(255,255,255,0.62), 0 0 30px rgba(225,235,255,0.34);
}

.wa-btn {
  position: relative;
  max-width: calc(100vw - 36px);
  box-sizing: border-box;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.72);
  padding: 18px 40px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(15px, 2.2vw, 20px);
  letter-spacing: 0.3em;
  text-shadow: 0 0 4px rgba(255,255,255,1), 0 0 12px rgba(255,255,255,0.8), 0 0 30px rgba(225,235,255,0.5);
  animation: gpWaPulse 2.5s ease-in-out infinite;
  transition: border-color 0.2s, text-shadow 0.2s, box-shadow 0.2s, transform 0.2s;
}

.wa-btn:hover {
  border-color: rgba(255,255,255,1);
  text-shadow: 0 0 4px rgba(255,255,255,1), 0 0 20px rgba(255,255,255,1), 0 0 50px rgba(225,235,255,0.9);
  box-shadow: 0 0 20px rgba(255,255,255,0.7), 0 0 60px rgba(225,235,255,0.4), inset 0 0 20px rgba(255,255,255,0.08);
  animation: none;
  transform: translateY(-2px);
}

.wa-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.8));
}

.multipli-cta {
  padding: 98px 40px 126px;
  text-align: center;
  background: #020202;
  position: relative;
  overflow: hidden;
}

.multipli-title {
  font-size: clamp(43px, 7vw, 96px);
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 0.98;
  margin: 28px 0 25px;
  text-shadow: var(--glow-sm);
}

.multipli-sub {
  font-size: 15px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.54);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.9;
}

.multipli-editions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.multipli-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.edition-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 24px;
  color: rgba(255,255,255,0.42);
}

.edition-tag.active {
  border-color: rgba(255,255,255,0.62);
  color: var(--white);
  text-shadow: var(--glow-xs);
  box-shadow: 0 0 14px rgba(255,255,255,0.1);
}

.galleria { background: #050505; padding: 0; }
.section-head { padding-top: 82px; padding-bottom: 40px; text-align: center; }

.galleria-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1120px;
  margin: 0 auto;
}

.galleria-video {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #0a0a0a;
}

.galleria-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: grayscale(1) contrast(1.12);
}

.galleria-video-vertical {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 60%),
    #000;
}

.galleria-video-vertical video {
  position: relative;
  inset: auto;
  width: min(420px, 92%);
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 0 42px rgba(255,255,255,0.15),
    0 28px 90px rgba(0,0,0,0.62);
}

.galleria-info {
  padding: 72px 60px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.018), transparent);
}

.galleria-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 7px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  color: rgba(255,255,255,0.52);
  margin-bottom: 40px;
  align-self: flex-start;
}

.galleria-address {
  font-size: clamp(31px, 4vw, 52px);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 9px;
  text-shadow: var(--glow-sm);
}

.galleria-city {
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 40px;
}

.galleria-hours {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 2;
  color: rgba(255,255,255,0.57);
  margin-bottom: 48px;
}

.galleria-hours strong { color: var(--white); font-weight: 400; }

.eventi-section { background: #030303; padding: 0; overflow: hidden; }

.eventi-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}

.eventi-group-label {
  font-size: 10px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  padding: 24px 44px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.eventi-group.prossimi .eventi-group-label {
  color: rgba(255,255,255,0.68);
  text-shadow: 0 0 12px rgba(255,255,255,0.25);
}

.evento-card {
  padding: 32px 44px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.35s, transform 0.35s;
}

.evento-card:hover { background: rgba(255,255,255,0.025); transform: translateX(4px); }

.evento-title {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.75);
}

.eventi-group.prossimi .evento-title { color: var(--white); text-shadow: var(--glow-sm); }

.evento-date, .evento-location {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 5px;
}

.evento-location { letter-spacing: 3px; color: rgba(255,255,255,0.28); }
.eventi-group.prossimi .evento-date { color: rgba(255,255,255,0.66); }
.eventi-group.prossimi .evento-location { color: rgba(255,255,255,0.46); }

.evento-desc {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.27);
  margin-top: 10px;
}

.eventi-loading {
  grid-column: 1 / -1;
  padding: 60px 44px;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.24);
  text-align: center;
}

.recensioni { background: #050505; }

.google-rating {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
  justify-content: center;
  flex-wrap: wrap;
}

.rating-num {
  font-size: 76px;
  letter-spacing: -3px;
  text-shadow: var(--glow-sm);
}

.rating-detail { display: flex; flex-direction: column; gap: 6px; }
.rating-stars, .stars { display: flex; gap: 4px; }
.rating-stars span, .stars span { color: var(--white); text-shadow: 0 0 10px rgba(255,255,255,0.7); }
.rating-stars span { font-size: 22px; }
.stars { margin-bottom: 24px; }
.stars span { font-size: 16px; }

.rating-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.recensioni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

.recensione-card {
  padding: 48px 44px;
  border: 1px solid rgba(255,255,255,0.075);
  background: rgba(255,255,255,0.012);
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
}

.recensione-card:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.02);
  transform: translateY(-3px);
}

.recensione-text {
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.73);
  margin-bottom: 32px;
}

.recensione-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.64);
  flex-shrink: 0;
  text-shadow: var(--glow-xs);
}

.author-name {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.author-source { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.28); margin-top: 3px; }

.instagram-section {
  padding: 104px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ig-handle {
  font-size: clamp(30px, 5vw, 56px);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 13px;
  text-shadow: var(--glow-sm);
}

.ig-sub {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 40px;
}

.ig-links { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }

.ig-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.54);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.35s, text-shadow 0.35s, transform 0.35s;
}

.ig-link svg { width: 20px; height: 20px; flex-shrink: 0; filter: drop-shadow(0 0 5px rgba(255,255,255,0.3)); }
.ig-link:hover { color: var(--white); text-shadow: var(--glow-xs); transform: translateY(-2px); }

footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  font-size: 22px;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255,255,255,0.32);
  margin-bottom: 16px;
}

.footer-tagline, .footer-copy {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 20px;
}

.footer-links-list { display: flex; flex-direction: column; gap: 12px; }

.footer-links-list a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.46);
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-links-list a:hover { color: var(--white); text-shadow: var(--glow-xs); }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 10px; color: rgba(255,255,255,0.18); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@keyframes introMark {
  0% { opacity: 0; transform: scale(0.94); filter: blur(8px) drop-shadow(0 0 0 rgba(255,255,255,0)); }
  48% { opacity: 1; transform: scale(1); filter: blur(0) drop-shadow(0 0 48px rgba(255,255,255,0.55)); }
  100% { opacity: 0.78; transform: scale(1.018); }
}

@keyframes gpWaPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255,255,255,0.3), 0 0 24px rgba(225,235,255,0.15); }
  50% { box-shadow: 0 0 18px rgba(255,255,255,0.6), 0 0 50px rgba(225,235,255,0.35), 0 0 90px rgba(200,220,255,0.2); }
}

@keyframes introExit {
  to { opacity: 0; visibility: hidden; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowBreath {
  0%, 100% { transform: scale(1); opacity: 0.76; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes uniqueAuraBreath {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.74; }
  50% { transform: translateY(-50%) scale(1.05); opacity: 1; }
}

@keyframes labelAuraPulse {
  0%, 100% {
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 10px rgba(255,255,255,1),
      0 0 26px rgba(235,242,255,0.94),
      0 0 68px rgba(225,235,255,0.66),
      0 0 138px rgba(200,220,255,0.34);
  }
  50% {
    text-shadow:
      0 0 5px rgba(255,255,255,1),
      0 0 18px rgba(255,255,255,1),
      0 0 42px rgba(235,242,255,1),
      0 0 92px rgba(225,235,255,0.82),
      0 0 176px rgba(200,220,255,0.48);
  }
}

@keyframes titlePulse {
  0%, 100% { text-shadow: var(--glow-md); }
  50% { text-shadow: var(--glow-lg); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.32; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.22); }
}

@media (max-width: 980px) {
  nav { gap: 22px; }
  .nav-cta { padding-inline: 18px; }
}

@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .unique-works-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .unique-works::after {
    left: auto;
    right: 28px;
    opacity: 0.38;
  }
  .unique-works-visual {
    width: min(560px, 100%);
    margin: 0 auto;
  }
  .galleria-inner, .eventi-groups { grid-template-columns: 1fr; }
  .opere-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { cursor: auto; }
  a, button { cursor: pointer; }
  body::before { opacity: 0.1; background-size: 40px 40px; }
  #cursor-glow, #cursor-dot { display: none; }
  header { padding: 16px 22px; }
  .logo-img { height: 44px; }
  .hero { padding: 112px 22px 82px; }
  .hero-title { letter-spacing: 5px; }
  .hero-label {
    font-size: 16px;
    letter-spacing: 3.4px;
    color: #fff;
    max-width: 92vw;
    line-height: 1.35;
    -webkit-text-stroke: 0.45px rgba(255,255,255,0.9);
    text-shadow:
      0 0 4px rgba(255,255,255,1),
      0 0 14px rgba(255,255,255,1),
      0 0 36px rgba(235,242,255,0.98),
      0 0 84px rgba(225,235,255,0.72),
      0 0 150px rgba(200,220,255,0.42);
  }
  .hero-label::before {
    width: 112vw;
    height: 120px;
    opacity: 1;
  }
  .hero-address {
    font-size: 14px;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 30px rgba(255,255,255,0.42);
  }
  .opposites-intro { padding: 78px 18px 84px; }
  .opposites-label { letter-spacing: 5px; }
  .opposites-title { letter-spacing: 3px; }
  .opposites-copy { font-size: 18px; letter-spacing: 1.3px; }
  .opposites-pairs { gap: 14px 20px; max-width: 340px; margin-bottom: 44px; }
  .opposites-pairs span { gap: 8px; width: calc(50% - 10px); justify-content: center; }
  .opposites-pairs b { font-size: 20px; letter-spacing: 2px; }
  .opposites-pairs i { font-size: 17px; letter-spacing: 1.7px; }
  .critic-quote { padding-left: 0; padding-right: 0; }
  .critic-quote strong { letter-spacing: 4px; }
  .unique-works {
    padding: 78px 0 86px;
  }
  .unique-works-inner {
    padding: 0 22px;
    gap: 38px;
  }
  .unique-works-copy .section-label {
    text-align: center;
    letter-spacing: 5px;
  }
  .unique-works-title {
    text-align: center;
    letter-spacing: 3px;
  }
  .unique-works-lead {
    text-align: center;
    font-size: 18px;
    letter-spacing: 1.3px;
  }
  .unique-works-tags {
    justify-content: center;
    margin-bottom: 34px;
  }
  .unique-works-tags span {
    width: 100%;
    max-width: 330px;
    justify-content: center;
    letter-spacing: 3px;
    text-align: center;
  }
  .unique-works-copy .btn-neon {
    margin: 0 auto;
  }
  .unique-works-visual,
  .unique-works-visual img {
    min-height: 440px;
  }
  .unique-works-card {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }
  .wa-standalone { padding: 54px 18px 62px; }
  .wa-txt br { display: none; }
  .wa-btn { width: min(100%, 340px); padding-left: 16px; padding-right: 16px; letter-spacing: 0.14em; font-size: 17px; }
  .hero-payoff br { display: none; }
  .hero-cta-group { width: 100%; }
  .btn-neon, .btn-ghost { width: 100%; max-width: 330px; padding-inline: 22px; }
  .container { padding: 0 24px; }
  .opere-grid { grid-template-columns: 1fr; }
  .galleria-info, .recensione-card { padding: 42px 28px; }
  .galleria-video { min-height: 420px; }
  .eventi-group-label, .evento-card { padding-left: 24px; padding-right: 24px; }
  .edition-tag { width: 100%; max-width: 360px; letter-spacing: 3px; }
  footer { grid-template-columns: 1fr; padding-inline: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@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;
  }
  #aura-canvas, .intro-veil { display: none; }
}
