.band-scene {
  background: #020100;
  overflow: hidden;
}

.band-visual {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 100vw;
  aspect-ratio: 16 / 9;

  transform: translate(-50%, -50%);
  overflow: visible;
}

.band-scene-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  display: block;
}

.band-story {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;
  flex-direction: column;
}

.band-hotspots {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.member-hotspot {
  position: absolute;

  width: 22px;
  height: 22px;

  border: 1px solid rgba(255, 245, 223, 0.9);
  border-radius: 50%;

  background: rgba(218, 146, 54, 0.35);

  box-shadow:
    0 0 10px rgba(255, 240, 205, 0.5),
    0 0 28px rgba(218, 146, 54, 0.35);

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  cursor: pointer;
  pointer-events: auto;
}

.hotspot-label {
  position: absolute;

  left: 50%;
  bottom: calc(100% + 18px);

  transform: translate(-50%, 8px);

  min-width: 220px;

  text-align: center;
  white-space: nowrap;

  opacity: 0;
  filter: blur(4px);

  padding: 18px 32px;
  isolation: isolate;

  pointer-events: none;

  transition:
    opacity 0.8s var(--cinema-ease),
    filter 0.8s var(--cinema-ease),
    transform 0.8s var(--cinema-ease);
}

.hotspot-label::before {
  content: "";
  position: absolute;

  left: 50%;
  top: 50%;

  width: 130%;
  height: 150%;

  transform: translate(-50%, -50%);

  background: radial-gradient(
    ellipse at center,
    rgba(5, 3, 1, 0.82) 0%,
    rgba(5, 3, 1, 0.58) 42%,
    rgba(5, 3, 1, 0.22) 68%,
    transparent 82%
  );

  filter: blur(10px);

  z-index: -1;
  pointer-events: none;
}

.hotspot-label strong {
  display: block;

  font-family: var(--story), serif;
  font-size: 1rem;
  font-weight: 500;

  letter-spacing: 0.18em;

  color: #fff5df;

  text-shadow:
    0 0 12px rgba(255, 240, 205, 0.28),
    0 0 35px rgba(218, 146, 54, 0.22);
}

.hotspot-label small {
  display: block;

  margin-top: 6px;

  font-family: var(--sans), sans-serif;
  font-size: 0.62rem;
  font-weight: 500;

  letter-spacing: 0.24em;

  color: rgba(255, 245, 223, 0.62);
}

.member-hotspot:hover .hotspot-label,
.member-hotspot:focus-visible .hotspot-label {
  opacity: 1;
  filter: blur(0);

  transform: translate(-50%, 0);
}

.hotspot-nico {
  left: 15.8%;
  top: 52.5%;
}

.hotspot-danila {
  left: 26%;
  top: 53%;
}

.hotspot-stefano-nardi {
  left: 29%;
  top: 45%;
}

.hotspot-fabio {
  left: 43%;
  top: 52%;
}

.hotspot-stefano-campaioli {
  left: 61.5%;
  top: 50.5%;
}

.hotspot-nicola {
  left: 66%;
  top: 51%;
}

.hotspot-giammarco {
  left: 79%;
  top: 53%;
}

.hotspot-daniele {
  left: 88.8%;
  top: 50.5%;
}

.band-story::before {
  opacity: 0;
  content: "";
  position: absolute;

  width: min(85vw, 1200px);
  height: 280px;

  background: radial-gradient(
    ellipse at center,
    rgba(12, 7, 3, 0.72) 0%,
    rgba(12, 7, 3, 0.48) 38%,
    rgba(12, 7, 3, 0.18) 65%,
    transparent 82%
  );

  filter: blur(18px);
  pointer-events: none;
}

.band-scene.is-active .band-story::before {
  animation: bandLightReveal var(--cinema-duration) var(--cinema-ease) 2.2s
    forwards;
}

.band-story-line {
  font-family: var(--story), serif;
  font-size: clamp(1.8rem, 3.2vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: #fff5df;
  text-align: center;

  opacity: 0;
  filter: blur(8px);
  transform: scale(0.97);
  animation: none;

  position: relative;
  z-index: 1;

  text-shadow:
    0 0 12px rgba(255, 240, 205, 0.28),
    0 0 45px rgba(218, 146, 54, 0.24),
    0 0 90px rgba(172, 87, 20, 0.18);
}

.band-scene.is-active .band-story-line {
  animation: bandStoryReveal var(--cinema-duration) var(--cinema-ease) 2.2s
    forwards;
}

.band-scene.is-active .band-story {
  animation: bandStoryExit 2.4s var(--cinema-ease) 11s forwards;
}

@keyframes bandStoryExit {
  0% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 0;
    filter: blur(8px);
  }
}

.band-story-copy {
  position: relative;
  z-index: 1;

  max-width: 900px;
  margin: 42px auto 0;

  font-family: var(--story), serif;
  font-size: clamp(1.15rem, 1.65vw, 1.8rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;

  color: rgba(255, 245, 223, 0.88);
  text-align: center;

  opacity: 0;
  filter: blur(6px);
}

.band-scene.is-active .band-story-copy {
  animation: bandCopyReveal var(--cinema-duration) var(--cinema-ease) 5s
    forwards;
}

.band-discover {
  position: absolute;
  left: 50%;
  z-index: 5;
  top: 66%;
  transform: translate(-50%, 18px);

  text-align: center;
  opacity: 0;
  filter: blur(6px);

  pointer-events: none;
}

.band-discover strong {
  display: block;
  font-family: var(--headline), sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: #fff5df;
}

.band-discover span {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--sans), sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 245, 223, 0.62);
}

.band-scene.is-active .band-discover {
  animation: bandDiscoverReveal 2s var(--cinema-ease) 13s forwards;
}

@keyframes bandDiscoverReveal {
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, 0);
  }
}

@keyframes bandStoryReveal {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.97);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes bandLightReveal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes bandCopyReveal {
  0% {
    opacity: 0;
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.member-scene {
  background: #020100;
  overflow: hidden;
}

.member-visual {
  position: absolute;
  inset: 0;
}

.member-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  display: block;

  opacity: 0;
  transform: scale(1.04);
}

.member-shade {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(2, 1, 0, 0.82) 0%,
    rgba(2, 1, 0, 0.46) 38%,
    rgba(2, 1, 0, 0.12) 68%,
    rgba(2, 1, 0, 0.55) 100%
  );

  opacity: 0;
}

.member-content {
  position: absolute;
  left: clamp(42px, 7vw, 120px);
  bottom: clamp(72px, 13vh, 160px);
  z-index: 2;

  max-width: 720px;

  opacity: 0;
  filter: blur(8px);
}

.member-role {
  font-family: var(--sans), sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255, 245, 223, 0.68);
}

.member-name {
  margin: 18px 0 22px;

  font-family: var(--story), serif;
  font-size: clamp(2.4rem, 5vw, 6rem);
  font-weight: 500;
  letter-spacing: 0.16em;

  color: #fff5df;

  text-shadow:
    0 0 14px rgba(255, 240, 205, 0.2),
    0 0 55px rgba(218, 146, 54, 0.18);
}

.member-quote {
  font-family: var(--story), serif;
  font-size: clamp(1.15rem, 1.6vw, 1.8rem);
  line-height: 1.55;
  letter-spacing: 0.04em;

  color: rgba(255, 245, 223, 0.86);
}

.member-back {
  position: absolute;
  left: clamp(42px, 7vw, 120px);
  top: clamp(34px, 6vh, 72px);
  z-index: 3;

  border: 0;
  background: transparent;

  font-family: var(--sans), sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;

  color: rgba(255, 245, 223, 0.68);
  cursor: pointer;

  opacity: 0;
}

.member-scene.is-active .member-image {
  animation: memberImageReveal var(--cinema-duration) var(--cinema-ease)
    forwards;
}

.member-scene.is-active .member-shade {
  animation: memberShadeReveal var(--cinema-duration) var(--cinema-ease) 0.6s
    forwards;
}

.member-scene.is-active .member-content {
  animation: memberContentReveal var(--cinema-duration) var(--cinema-ease) 1.4s
    forwards;
}

.member-scene.is-active .member-back {
  animation: memberBackReveal 1.4s var(--cinema-ease) 2.2s forwards;
}

@keyframes memberImageReveal {
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes memberShadeReveal {
  100% {
    opacity: 1;
  }
}

@keyframes memberContentReveal {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes memberBackReveal {
  100% {
    opacity: 1;
  }
}

.showreel-scene {
  background: #000;
}

.showreel-scene.is-active {
  pointer-events: auto;
}

.showreel-intro {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 1rem;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity var(--cinema-duration) var(--cinema-ease),
    filter var(--cinema-duration) var(--cinema-ease),
    visibility var(--cinema-duration);
}

.showreel-line {
  pointer-events: none;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(18px);

  font-family: var(--story), serif;
  font-size: clamp(1.8rem, 3.4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;

  color: #fff5df;

  text-shadow:
    0 0 12px rgba(255, 240, 205, 0.18),
    0 0 45px rgba(218, 146, 54, 0.16);

  transition:
    opacity 1400ms ease,
    filter 1400ms ease,
    transform 1400ms cubic-bezier(0.22, 0.7, 0.18, 1);
}

.showreel-scene.is-active .showreel-line-1 {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 300ms;
}

.showreel-scene.is-active .showreel-line-2 {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 900ms;
}

.showreel-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center center;

  background: #000;

  opacity: 0;
  visibility: hidden;

  z-index: 3;
}

.showreel-play {
  pointer-events: auto;
  position: relative;
  z-index: 10;

  margin-top: 2rem;

  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);

  border: 1px solid rgba(220, 174, 91, 0.42);
  border-radius: 999px;
  padding: 0.9rem 1.25rem;

  background: rgba(255, 215, 150, 0.06);
  color: #fff2d6;

  font-family: var(--headline), sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    opacity 1400ms ease,
    filter 1400ms ease,
    transform 1400ms cubic-bezier(0.22, 0.7, 0.18, 1);
}

.showreel-play-icon {
  margin-right: 0.75rem;
}

.showreel-scene.is-ready .showreel-play {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.showreel-scene.is-playing .showreel-video {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.showreel-scene:not(.is-active) .showreel-intro,
.showreel-scene:not(.is-active) .showreel-gallery,
.showreel-scene:not(.is-active) .showreel-video {
  pointer-events: none !important;
  visibility: hidden;
}

/* =========================================================
   SHOWREEL - AUDIENCE VIDEOS
   ========================================================= */

.showreel-audience {
  margin-top: 2.5rem;

  text-align: center;

  opacity: 0;
  transform: translateY(14px);
  filter: blur(5px);
}

.showreel-scene.is-active .showreel-audience {
  animation: showreelAudienceIn 1.4s ease forwards;
  animation-delay: 3s;
}

.showreel-audience-title {
  font-family: var(--story), serif;
  font-size: clamp(0.9rem, 1.25vw, 1.2rem);
  font-weight: 500;

  letter-spacing: 0.22em;

  color: #fff5df;
}

.showreel-audience-copy {
  margin: 0.65rem 0 1rem;

  font-family: var(--sans), sans-serif;
  font-size: clamp(0.72rem, 0.85vw, 0.88rem);
  line-height: 1.55;

  color: rgba(255, 245, 223, 0.62);
}

.showreel-youtube {
  display: inline-block;

  padding: 0.72rem 1.15rem;

  border: 1px solid rgba(218, 146, 54, 0.42);
  border-radius: 999px;

  background: rgba(218, 146, 54, 0.08);
  color: rgba(218, 146, 54, 0.92);

  font-family: var(--sans), sans-serif;
  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    color 280ms ease,
    border-color 280ms ease,
    background 280ms ease,
    transform 280ms ease;
}

.showreel-youtube:hover {
  color: #fff5df;
  border-color: rgba(218, 146, 54, 0.72);
  background: rgba(218, 146, 54, 0.16);
  transform: translateY(-2px);
}

@keyframes showreelAudienceIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(5px);
  }

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

.showreel-gallery {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;

  padding: 78px 6vw 46px;

  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(218, 146, 54, 0.14),
      transparent 34%
    ),
    #020100;

  color: #fff5df;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(8px);

  transition:
    opacity var(--cinema-duration) var(--cinema-ease),
    filter var(--cinema-duration) var(--cinema-ease),
    visibility var(--cinema-duration);
}

.showreel-scene.is-gallery .showreel-intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(8px);
}

.showreel-scene.is-active.is-gallery .showreel-gallery {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: blur(0);
}

.showreel-gallery-kicker {
  font-family: var(--sans), sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: rgba(218, 146, 54, 0.82);
}

.showreel-gallery-manifesto {
  margin-top: 0.6rem;
  margin-bottom: 1.7rem;

  font-family: var(--story), serif;
  font-size: clamp(1.8rem, 3.2vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 0.16em;
}

.showreel-gallery-manifesto span {
  display: block;
  color: rgba(255, 245, 223, 0.55);
}

.showreel-gallery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.showreel-video-panel {
  min-width: 0;
}

.showreel-video-column {
  max-height: 43vh;
  overflow-y: auto;
  overflow-x: hidden;

  display: flex;
  flex-direction: column;
  gap: 14px;

  padding-right: 10px;
}

.showreel-live-grid,
.showreel-tv-grid {
  display: contents;
}

.showreel-card-tv {
  aspect-ratio: 16 / 9;
}

.showreel-card {
  position: relative;
  display: block;
  overflow: hidden;

  aspect-ratio: 16 / 9;
  min-height: 0;

  border: 1px solid rgba(218, 146, 54, 0.2);
  background: #000;
  color: #fff5df;
  text-decoration: none;
}

.showreel-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  filter: brightness(0.72) contrast(1.08) saturate(0.92);
  transform: scale(1.01);

  transition:
    transform 700ms var(--cinema-ease),
    filter 700ms ease;
}

.showreel-card:hover img {
  transform: scale(1.055);
  filter: brightness(0.62) contrast(1.14) saturate(1.04);
}

.showreel-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.88));
}

.showreel-card-copy {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
}

.showreel-card-title {
  font-family: var(--story), serif;
  font-size: clamp(0.95rem, 1.15vw, 1.35rem);
  letter-spacing: 0.1em;
}

.showreel-card-meta {
  margin-top: 0.3rem;
  font-family: var(--sans), sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: rgba(218, 146, 54, 0.82);
}

.showreel-card-play {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
}

.showreel-gallery-section-title,
.showreel-tv-subtitle {
  font-family: var(--sans), sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: rgba(255, 245, 223, 0.62);
}

.showreel-tv-subtitle {
  margin: 0.35rem 0 0.8rem;
  color: rgba(218, 146, 54, 0.72);
}

.showreel-gallery-back {
  position: absolute;
  left: 6vw;
  bottom: 22px;

  border: 0;
  background: transparent;

  font-family: var(--sans), sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;

  color: rgba(255, 245, 223, 0.58);
  cursor: pointer;
}

.showreel-gallery-back:hover {
  color: #fff5df;
}

#topnav {
  position: fixed;
  z-index: 99999;
  pointer-events: auto;
}

#topnav a {
  pointer-events: auto;
}

.scene[aria-hidden="true"] {
  pointer-events: none;
}

.scene.is-active {
  pointer-events: auto;
}

/* =========================================================
   DATES SCENE
   ========================================================= */

.dates-scene {
  background: #020100;
  overflow: hidden;
}

.dates-visual {
  position: absolute;
  inset: 0;
}

.dates-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  opacity: 0;
  transform: scale(1.035);
}

.dates-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(2, 1, 0, 0.18) 0%,
      rgba(2, 1, 0, 0.58) 38%,
      rgba(2, 1, 0, 0.88) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 1, 0, 0.28) 0%,
      rgba(2, 1, 0, 0.08) 45%,
      rgba(2, 1, 0, 0.7) 100%
    );

  opacity: 0;
}

.dates-content {
  position: absolute;

  right: clamp(55px, 8vw, 150px);
  top: 50%;

  width: min(700px, 48vw);
  max-height: 72vh;

  transform: translateY(-46%);

  z-index: 2;

  opacity: 0;
  filter: blur(8px);
}

.dates-heading {
  margin-bottom: 2.8rem;

  font-family: var(--story), serif;
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 500;

  letter-spacing: 0.24em;

  color: #fff5df;

  text-shadow:
    0 0 12px rgba(255, 240, 205, 0.22),
    0 0 45px rgba(218, 146, 54, 0.2);
}

.dates-list {
  max-height: 52vh;
  overflow-y: auto;

  padding-right: 1.5rem;
}

.dates-year {
  margin: 0 0 1.4rem;

  font-family: var(--sans), sans-serif;
  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.32em;

  color: rgba(255, 245, 223, 0.48);
}

.date-row {
  display: grid;

  grid-template-columns:
    clamp(80px, 7vw, 120px)
    1fr
    auto;

  gap: 2rem;
  align-items: center;

  padding: 1.7rem 0;

  border-bottom: 1px solid rgba(218, 146, 54, 0.18);

  transition:
    opacity 600ms ease,
    transform 600ms var(--cinema-ease);
}

.date-row:hover {
  transform: translateX(-8px);
}

.date-day {
  font-family: var(--story), serif;
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  line-height: 0.9;

  color: #fff5df;
}

.date-month {
  display: block;

  margin-top: 0.5rem;

  font-family: var(--sans), sans-serif;
  font-size: 0.64rem;

  letter-spacing: 0.28em;

  color: rgba(255, 245, 223, 0.54);
}

.date-city {
  font-family: var(--story), serif;
  font-size: clamp(1.15rem, 1.6vw, 1.8rem);

  letter-spacing: 0.14em;

  color: #fff5df;
}

.date-event {
  margin-top: 0.5rem;

  font-family: var(--sans), sans-serif;
  font-size: 0.66rem;

  line-height: 1.5;
  letter-spacing: 0.12em;

  color: rgba(255, 245, 223, 0.58);
}

.date-location {
  margin-top: 0.3rem;

  font-family: var(--sans), sans-serif;
  font-size: 0.62rem;

  letter-spacing: 0.16em;

  color: rgba(218, 146, 54, 0.62);
}

.date-time {
  font-family: var(--story), serif;
  font-size: clamp(1.45rem, 2vw, 2.4rem);
  font-weight: 400;

  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings:
    "lnum" 1,
    "tnum" 1;

  letter-spacing: 0.04em;

  color: rgba(255, 245, 223, 0.9);

  text-shadow:
    0 0 10px rgba(255, 240, 205, 0.16),
    0 0 30px rgba(218, 146, 54, 0.12);
}

.dates-archive-toggle {
  margin-top: 2.2rem;

  border: 0;
  background: transparent;

  padding: 0;

  font-family: var(--sans), sans-serif;
  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.24em;

  color: rgba(255, 245, 223, 0.48);

  cursor: pointer;

  transition: color 600ms ease;
}

.dates-archive-toggle:hover {
  color: #fff5df;
}

.dates-scene.is-active .dates-background {
  animation: datesBackgroundReveal var(--cinema-duration) var(--cinema-ease)
    forwards;
}

.dates-scene.is-active .dates-shade {
  animation: datesShadeReveal var(--cinema-duration) var(--cinema-ease) 0.5s
    forwards;
}

.dates-scene.is-active .dates-content {
  animation: datesContentReveal var(--cinema-duration) var(--cinema-ease) 1.2s
    forwards;
}

@keyframes datesBackgroundReveal {
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes datesShadeReveal {
  100% {
    opacity: 1;
  }
}

@keyframes datesContentReveal {
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%);
  }
}

.quote-form input:-webkit-autofill,
.quote-form input:-webkit-autofill:hover,
.quote-form input:-webkit-autofill:focus,
.quote-form input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff5df;
  caret-color: #fff5df;

  -webkit-box-shadow: 0 0 0 1000px rgba(20, 10, 4, 0.88) inset;

  box-shadow: 0 0 0 1000px rgba(20, 10, 4, 0.88) inset;

  transition: background-color 9999s ease-out 0s;
}

.contacts-scene {
  background: #020100;
  overflow: hidden;
}

.contacts-visual {
  position: absolute;
  inset: 0;
}

.contacts-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center right;

  opacity: 0;
  transform: scale(1.035);

  display: block;
}

.contacts-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(218, 146, 54, 0.18),
      transparent 34%
    ),
    linear-gradient(
      90deg,
      rgba(2, 1, 0, 0.92),
      rgba(2, 1, 0, 0.58),
      rgba(2, 1, 0, 0.94)
    );
}

.contacts-content {
  position: absolute;
  left: clamp(42px, 7vw, 120px);
  top: 50%;
  width: min(920px, 78vw);
  max-height: 78vh;

  overflow-y: auto;
  overflow-x: hidden;

  padding-left: 12px;
  padding-right: 28px;

  box-sizing: border-box;
  scrollbar-gutter: stable;

  transform: translateY(-48%);
  opacity: 0;
  filter: blur(8px);
}

.contacts-kicker {
  font-family: var(--sans), sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: rgba(255, 245, 223, 0.55);
}

.contacts-title {
  margin: 1rem 0;
  font-family: var(--story), serif;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fff5df;
}

.contacts-copy {
  max-width: 720px;
  margin-bottom: 2.4rem;
  font-family: var(--story), serif;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.65;
  color: rgba(255, 245, 223, 0.78);
}

.contacts-scene.is-active .contacts-background {
  animation: contactsBackgroundReveal var(--cinema-duration) var(--cinema-ease)
    forwards;
}

@keyframes contactsBackgroundReveal {
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.quote-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.85;
  cursor: pointer;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-family: var(--sans), sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: rgba(255, 245, 223, 0.62);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 1px solid rgba(218, 146, 54, 0.24);
  background: rgba(255, 245, 223, 0.045);
  color: #fff5df;
  padding: 0.85rem 0.9rem;
  font-family: var(--sans), sans-serif;
  font-size: 0.9rem;
}

.quote-form select {
  color: #fff5df;
  background-color: #120905;
}

.quote-form select option {
  color: #fff5df;
  background-color: #120905;
}

.quote-submit {
  margin-top: 0.8rem;
  border: 1px solid rgba(218, 146, 54, 0.45);
  background: rgba(218, 146, 54, 0.12);
  color: #fff5df;
  padding: 1rem 1.4rem;
  font-family: var(--headline), sans-serif;
  letter-spacing: 0.18em;
  cursor: pointer;
}

.quote-result {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(218, 146, 54, 0.22);
  font-family: var(--story), serif;
  color: #fff5df;
}

.quote-total {
  font-size: clamp(2rem, 3.5vw, 4rem);
  letter-spacing: 0.08em;
}

.quote-note {
  margin-top: 1rem;
  max-width: 760px;
  font-family: var(--sans), sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: rgba(255, 245, 223, 0.62);
}

.quote-submit-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.quote-inline-result {
  max-width: 520px;

  font-family: var(--sans), sans-serif;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.08em;

  color: rgba(255, 245, 223, 0.68);
}

.quote-inline-result.is-error {
  color: rgba(255, 185, 145, 0.88);
}

.quote-inline-result.is-success {
  color: rgba(255, 245, 223, 0.82);
}

.contacts-scene.is-active .contacts-content {
  animation: datesContentReveal var(--cinema-duration) var(--cinema-ease) 0.8s
    forwards;
}

.location-suggestions {
  display: none;
  border: 1px solid rgba(218, 146, 54, 0.22);
  background: rgba(2, 1, 0, 0.94);
}

.location-suggestions.is-visible {
  display: block;
}

.location-suggestion {
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  color: rgba(255, 245, 223, 0.8);
  border-bottom: 1px solid rgba(218, 146, 54, 0.12);
}

.location-suggestion:hover {
  color: #fff5df;
  background: rgba(218, 146, 54, 0.12);
}

/* =========================================================
   SHOWREEL - PANEL HEADERS
   ========================================================= */

.showreel-panel-head {
  height: 52px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding-bottom: 10px;
}

.showreel-panel-title {
  font-family: var(--headline), sans-serif;
  font-size: 0.82rem;
  font-weight: 600;

  letter-spacing: 0.28em;

  color: rgba(255, 245, 223, 0.88);
}

.showreel-panel-subtitle {
  margin-top: 7px;

  font-family: var(--sans), sans-serif;
  font-size: 0.62rem;
  font-weight: 500;

  letter-spacing: 0.24em;

  color: rgba(218, 146, 54, 0.78);
}

#quoteForm .quote-privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

#quoteForm .quote-privacy input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;

  display: block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin: 3px 0 0;
  padding: 0;
  flex: 0 0 16px;
  cursor: pointer;
}

#quoteForm .quote-privacy span {
  display: block;
  flex: 1 1 auto;
  width: auto;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

/* =========================================================
   PRIVACY POLICY MODAL
   ========================================================= */

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.privacy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(84, 55, 18, 0.18) 0%,
    rgba(0, 0, 0, 0.78) 55%,
    rgba(0, 0, 0, 0.94) 100%
  );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.privacy-modal-panel {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;

  width: min(900px, 92vw);
  max-height: min(820px, 88vh);

  padding: 42px 46px 32px;

  color: #f4eee4;

  background: linear-gradient(
    145deg,
    rgba(25, 22, 18, 0.98),
    rgba(8, 8, 8, 0.99)
  );

  border: 1px solid rgba(201, 154, 74, 0.42);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  overflow: hidden;

  transform: translateY(20px) scale(0.985);

  transition: transform 0.35s ease;
}

.privacy-modal.is-open .privacy-modal-panel {
  transform: translateY(0) scale(1);
}

.privacy-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;

  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(201, 154, 74, 0.035) 45%,
    transparent 75%
  );
}

.privacy-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  color: rgba(244, 238, 228, 0.72);
  background: transparent;
  border: 0;

  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.privacy-modal-close:hover,
.privacy-modal-close:focus-visible {
  color: #c99a4a;
  transform: scale(1.08);
  outline: none;
}

.privacy-modal-kicker {
  position: relative;
  z-index: 1;

  margin-bottom: 8px;

  color: #c99a4a;

  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.privacy-modal-title {
  position: relative;
  z-index: 1;

  margin: 0 0 24px;

  color: #fff8ed;

  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-modal-content {
  position: relative;
  z-index: 1;

  flex: 1;
  min-height: 0;

  padding-right: 20px;

  overflow-y: auto;
  overscroll-behavior: contain;

  color: rgba(244, 238, 228, 0.82);

  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.72;

  scrollbar-width: thin;
  scrollbar-color: rgba(201, 154, 74, 0.75) rgba(255, 255, 255, 0.05);
}

.privacy-modal-content::-webkit-scrollbar {
  width: 7px;
}

.privacy-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.privacy-modal-content::-webkit-scrollbar-thumb {
  background: rgba(201, 154, 74, 0.65);
  border-radius: 999px;
}

.privacy-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 154, 74, 0.9);
}

.privacy-modal-content p {
  margin: 0 0 18px;
}

.privacy-modal-content h3 {
  margin: 29px 0 10px;

  color: #d7ad66;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.045em;
}

.privacy-modal-content a,
.privacy-modal-content a:visited {
  color: #d7ad66;

  font: inherit;

  text-decoration: underline;
  text-underline-offset: 3px;

  transition: color 0.2s ease;
}

.privacy-modal-content a:hover,
.privacy-modal-content a:focus-visible {
  color: #fff4df;
  outline: none;
}

.privacy-modal-actions {
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: flex-end;

  padding-top: 24px;
  margin-top: 20px;

  border-top: 1px solid rgba(201, 154, 74, 0.18);
}

.privacy-modal-button {
  min-width: 140px;

  padding: 12px 24px;

  color: #fff7e9;
  background: rgba(201, 154, 74, 0.1);

  border: 1px solid rgba(201, 154, 74, 0.65);

  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;

  cursor: pointer;

  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.privacy-modal-button:hover,
.privacy-modal-button:focus-visible {
  color: #16120d;
  background: #c99a4a;
  border-color: #c99a4a;
  outline: none;
}

/* Impedisce lo scorrimento della pagina dietro al modal */
body.privacy-modal-open {
  overflow: hidden;
}

/* =========================================================
   Privacy / Marketing
   ========================================================= */

.quote-privacy-info {
  display: block;
  width: 100%;

  margin-top: 18px;
  margin-bottom: 16px;

  font-size: 13px;
  line-height: 1.7;
}

.quote-marketing-consent {
  margin-top: 6px;
}

.quote-marketing-consent span {
  font-size: 13px;
  line-height: 1.7;
}

.quote-privacy-info a,
.quote-privacy-info a:visited {
  color: #c99a4a;
  font: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quote-privacy-info a:hover,
.quote-privacy-info a:focus {
  color: #fff4df;
}

/* =========================================================
   CONTATTI — FORM + DESCRIZIONE BOOKING
   Form a sinistra, informazioni a destra
   Compatibile con 16:9, 16:10 e 4:3 desktop
   ========================================================= */

.contacts-content {
  left: clamp(34px, 5vw, 96px);

  width: min(1500px, calc(100vw - clamp(68px, 10vw, 192px)));
  max-height: 80vh;

  padding-left: 10px;
  padding-right: 28px;
}

.contacts-copy {
  max-width: 820px;
  margin-bottom: 2rem;
}

/* Layout principale a due colonne */

.contacts-booking-layout {
  display: grid;

  grid-template-columns:
    minmax(560px, 1.6fr)
    minmax(280px, 0.6fr);

  gap: clamp(32px, 4vw, 72px);
  align-items: start;

  width: 100%;
}

.contacts-form-column {
  min-width: 0;
}

.booking-info {
  position: relative;

  min-width: 0;
  padding: clamp(24px, 2.2vw, 38px);

  background: linear-gradient(
    145deg,
    rgba(20, 12, 7, 0.48),
    rgba(5, 3, 2, 0.3)
  );

  border-left: 2px solid rgba(201, 154, 74, 0.55);

  box-shadow:
    inset 8px 0 24px rgba(0, 0, 0, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.16);

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Piccolo riflesso cinematografico */

.booking-info::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;

  background: linear-gradient(
    120deg,
    rgba(201, 154, 74, 0.05),
    transparent 36%,
    transparent 100%
  );
}

/* Testi della colonna destra */

.booking-info-kicker {
  position: relative;

  margin-bottom: 12px;

  font-family: var(--sans), sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(201, 154, 74, 0.9);
}

.booking-info-title {
  position: relative;

  margin: 0 0 18px;

  font-family: var(--story), serif;
  font-size: clamp(1.55rem, 2.1vw, 2.65rem);
  font-weight: 500;
  line-height: 1.13;

  letter-spacing: 0.09em;

  color: #fff5df;

  text-shadow:
    0 0 16px rgba(255, 240, 205, 0.16),
    0 0 42px rgba(218, 146, 54, 0.12);
}

.booking-info-intro {
  position: relative;

  margin: 0 0 12px;

  font-family: var(--story), serif;
  font-size: clamp(0.92rem, 1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;

  color: rgba(255, 245, 223, 0.9);
}

.booking-info-copy {
  position: relative;

  margin: 0;

  font-family: var(--sans), sans-serif;
  font-size: clamp(0.75rem, 0.78vw, 0.86rem);
  line-height: 1.65;

  color: rgba(255, 245, 223, 0.66);
}

/* Elenco vantaggi */

.booking-benefits {
  position: relative;

  display: grid;
  gap: 14px;

  margin-top: 24px;
  padding-top: 22px;

  border-top: 1px solid rgba(201, 154, 74, 0.2);
}

.booking-benefit {
  min-width: 0;
}

.booking-benefit-title {
  display: flex;
  align-items: baseline;
  gap: 9px;

  font-family: var(--sans), sans-serif;
  font-size: clamp(0.75rem, 0.82vw, 0.9rem);
  font-weight: 600;
  line-height: 1.35;

  letter-spacing: 0.045em;

  color: rgba(255, 245, 223, 0.92);
}

.booking-benefit-mark {
  flex: 0 0 auto;

  font-size: 0.52rem;

  color: #c99a4a;

  transform: translateY(-1px);
}

.booking-benefit-copy {
  margin-top: 4px;
  padding-left: 18px;

  font-family: var(--sans), sans-serif;
  font-size: clamp(0.68rem, 0.73vw, 0.79rem);
  line-height: 1.5;

  color: rgba(255, 245, 223, 0.58);
}

/* Frase conclusiva */

.booking-info-quote {
  position: relative;

  margin: 24px 0 0;
  padding: 19px 0 0 18px;

  border-top: 1px solid rgba(201, 154, 74, 0.2);
  border-left: 2px solid rgba(201, 154, 74, 0.66);

  font-family: var(--story), serif;
  font-size: clamp(0.86rem, 0.94vw, 1rem);
  font-style: normal;
  line-height: 1.55;

  color: rgba(255, 245, 223, 0.82);
}

/* =========================================================
   DESKTOP 16:10 E SCHERMI MENO LARGHI
   Mantiene sempre le due colonne
   ========================================================= */

@media (max-width: 1450px) {
  .contacts-content {
    left: 42px;
    width: calc(100vw - 84px);
  }

  .contacts-booking-layout {
    grid-template-columns:
      minmax(520px, 1.35fr)
      minmax(280px, 0.72fr);

    gap: 34px;
  }

  .booking-info {
    padding: 24px 26px;
  }

  .booking-benefits {
    gap: 11px;
    margin-top: 20px;
    padding-top: 18px;
  }

  .booking-info-quote {
    margin-top: 20px;
  }
}

/* =========================================================
   DESKTOP 4:3
   Form sempre a sinistra, descrizione sempre a destra
   ========================================================= */

@media (max-width: 1180px) {
  .contacts-content {
    left: 28px;

    width: calc(100vw - 56px);
    max-height: 82vh;

    padding-left: 6px;
    padding-right: 20px;
  }

  .contacts-title {
    font-size: clamp(2rem, 4.8vw, 4rem);
  }

  .contacts-copy {
    max-width: 680px;
    margin-bottom: 1.5rem;
  }

  .contacts-booking-layout {
    grid-template-columns:
      minmax(500px, 1.55fr)
      minmax(250px, 0.7fr);

    gap: 24px;
  }

  .booking-info {
    padding: 21px 20px;
  }

  .booking-info-title {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    letter-spacing: 0.065em;
  }

  .booking-info-intro {
    font-size: 0.88rem;
  }

  .booking-info-copy {
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .booking-benefits {
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
  }

  .booking-benefit-title {
    font-size: 0.74rem;
  }

  .booking-benefit-copy {
    display: none;
  }

  .booking-info-quote {
    margin-top: 18px;
    padding-top: 16px;

    font-size: 0.82rem;
  }
}

/* =========================================================
   TOOLTIP FORMAZIONE ETB
   ========================================================= */

.lineup-field {
  position: relative;
}

.quote-label-with-help {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.help-tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;
  padding: 0;

  border: 1px solid rgba(201, 154, 74, 0.72);
  border-radius: 50%;

  background: rgba(201, 154, 74, 0.08);
  color: #d7ad66;

  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;

  cursor: help;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.help-tooltip-trigger:hover,
.help-tooltip-trigger:focus-visible,
.help-tooltip-trigger[aria-expanded="true"] {
  color: #fff5df;
  background: rgba(201, 154, 74, 0.2);
  border-color: #c99a4a;
  transform: scale(1.08);
  outline: none;
}

.help-tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 14px);
  z-index: 500;

  width: min(470px, 44vw);
  padding: 24px 26px;

  color: rgba(255, 245, 223, 0.82);

  background: linear-gradient(
    145deg,
    rgba(25, 18, 12, 0.98),
    rgba(6, 4, 2, 0.98)
  );

  border: 1px solid rgba(201, 154, 74, 0.5);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px) scale(0.985);

  transition:
    opacity 0.24s ease,
    visibility 0.24s ease,
    transform 0.24s ease;
}

.help-tooltip::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -7px;

  width: 12px;
  height: 12px;

  background: rgba(10, 7, 4, 0.98);

  border-right: 1px solid rgba(201, 154, 74, 0.5);
  border-bottom: 1px solid rgba(201, 154, 74, 0.5);

  transform: rotate(45deg);
}

.help-tooltip.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0) scale(1);
}

.help-tooltip-title {
  margin-bottom: 18px;

  font-family: var(--headline), sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;

  color: #c99a4a;
}

.help-tooltip-section + .help-tooltip-section {
  margin-top: 18px;
}

.help-tooltip-section strong,
.help-tooltip-note strong {
  display: block;

  margin-bottom: 6px;

  font-family: var(--sans), sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.035em;

  color: #fff5df;
}

.help-tooltip-section p,
.help-tooltip-note p {
  margin: 0;

  font-family: var(--sans), sans-serif;
  font-size: 0.75rem;
  line-height: 1.62;
  letter-spacing: normal;

  color: rgba(255, 245, 223, 0.7);
}

.help-tooltip-note {
  margin-top: 20px;
  padding-top: 17px;

  border-top: 1px solid rgba(201, 154, 74, 0.2);
}

/* Su schermi meno larghi il tooltip resta dentro la finestra */
@media (max-width: 1180px) {
  .help-tooltip {
    width: min(420px, 58vw);
  }
}


/* =========================================================
   PROJECT SCENE
   ========================================================= */

.project-scene {
  background: #020100;
  overflow: hidden;
}

.project-visual {
  position: absolute;
  inset: 0;
}

.project-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  opacity: 0;
  transform: scale(1.035);
}

.project-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(2, 1, 0, 0.96) 0%,
      rgba(2, 1, 0, 0.90) 30%,
      rgba(2, 1, 0, 0.68) 48%,
      rgba(2, 1, 0, 0.20) 72%,
      rgba(2, 1, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 1, 0, 0.42) 0%,
      rgba(2, 1, 0, 0.06) 46%,
      rgba(2, 1, 0, 0.72) 100%
    );

  opacity: 0;
}

.project-content {
  position: absolute;

  left: clamp(42px, 6vw, 110px);
  top: clamp(86px, 12vh, 132px);
  bottom: clamp(42px, 6vh, 72px);

  z-index: 2;

  width: min(720px, 46vw);

  display: flex;
  flex-direction: column;

  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px);
}

.project-header {
  flex: 0 0 auto;
  padding-right: 1rem;
}

.project-kicker {
  font-family: var(--sans), sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(218, 146, 54, 0.82);
}

.project-title {
  margin: 0.7rem 0 1rem;

  font-family: var(--story), serif;
  font-size: clamp(2.2rem, 4.4vw, 5.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.18em;

  color: #fff5df;

  text-shadow:
    0 0 14px rgba(255, 240, 205, 0.2),
    0 0 52px rgba(218, 146, 54, 0.18);
}

.project-intro {
  max-width: 620px;
  margin: 0;

  font-family: var(--story), serif;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.55;
  letter-spacing: 0.05em;

  color: rgba(255, 245, 223, 0.78);
}

.project-scroll {
  min-height: 0;
  margin-top: 2rem;
  padding-right: 1.3rem;

  overflow-y: auto;
  overflow-x: hidden;
}

.project-section {
  position: relative;

  padding: 0 0 2.2rem 3.6rem;
  margin-bottom: 2.2rem;

  border-bottom: 1px solid rgba(218, 146, 54, 0.16);
}

.project-section-number {
  position: absolute;
  left: 0;
  top: 0.15rem;

  font-family: var(--headline), sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;

  color: rgba(218, 146, 54, 0.78);
}

.project-section h3 {
  margin: 0 0 1rem;

  font-family: var(--headline), sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #f3c982;
}

.project-section p {
  margin: 0 0 0.9rem;

  font-family: var(--sans), sans-serif;
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  line-height: 1.72;

  color: rgba(255, 245, 223, 0.78);
}

.project-section p:last-child {
  margin-bottom: 0;
}

.project-list {
  color: rgba(255, 245, 223, 0.92) !important;
}

.project-closing {
  padding: 0.8rem 0 1.2rem 3.6rem;
}

.project-closing > p {
  margin: 0 0 1.5rem;

  font-family: var(--story), serif;
  font-size: clamp(1.15rem, 1.65vw, 1.8rem);
  line-height: 1.5;
  letter-spacing: 0.13em;

  color: #fff5df;

  text-shadow:
    0 0 12px rgba(255, 240, 205, 0.16),
    0 0 36px rgba(218, 146, 54, 0.14);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.project-btn {
  border: 1px solid rgba(218, 146, 54, 0.38);
  background: rgba(218, 146, 54, 0.07);
  color: #fff2d6;
}

.project-btn:hover {
  border-color: rgba(218, 146, 54, 0.68);
  background: rgba(218, 146, 54, 0.14);
}

/* Entrata scena */

.project-scene.is-active .project-background {
  animation: projectBackgroundReveal 1.25s var(--cinema-ease) forwards;
}

.project-scene.is-active .project-shade {
  animation: projectShadeReveal 0.95s var(--cinema-ease) 0.15s forwards;
}

.project-scene.is-active .project-content {
  animation: projectContentReveal 1.05s var(--cinema-ease) 0.35s forwards;
}

@keyframes projectBackgroundReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes projectShadeReveal {
  to {
    opacity: 1;
  }
}

@keyframes projectContentReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (max-aspect-ratio: 16 / 10) {
  .project-content {
    top: 92px;
    bottom: 34px;
    width: min(760px, 52vw);
  }

  .project-title {
    font-size: clamp(2rem, 4vw, 4.6rem);
  }

  .project-scroll {
    margin-top: 1.4rem;
  }
}