/* =========================================
   HOW NOT TO BE A ROCKSTAR — Cinematic Hybrid Design System
   ========================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #0a0806;
  --dark-warm: #1a1206;
  --gold: #c4973f;
  --gold-light: #e2be5a;
  --parchment: #f5eed5;
  --parchment-dark: #e8dfc0;
  --white: #ffffff;
  --text-light: #e8e0cc;
  --text-dim: #7d8a96;

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-accent: 'Space Mono', monospace;

  --nav-height: 60px;
  --max-width: 1200px;
  --section-pad: clamp(2.5rem, 5vw, 4rem);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

/* ---------- Film Grain Overlay ---------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ---------- Utility ---------- */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
}

/* ---------- Fade-in (GSAP-driven) ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================
   NAV
   =================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 8, 6, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.is-scrolled {
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--gold);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 8, 6, 0.97);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  .nav__links.is-open {
    transform: translateY(0);
  }

  .nav__links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ===================
   HERO
   =================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.3) 0%,
    rgba(10, 8, 6, 0.15) 40%,
    rgba(10, 8, 6, 0.5) 80%,
    rgba(10, 8, 6, 0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-main {
  display: block;
  font-size: clamp(2.8rem, 9vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

.hero__title-accent {
  display: block;
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(196, 151, 63, 0.3);
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  opacity: 0;
}

.hero__credit {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  opacity: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroScrollPulse 2s ease-in-out infinite;
}

.hero__scroll span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.5; transform: translateX(-50%) translateY(8px); }
}

/* ===================
   LOGLINE
   =================== */
.logline {
  position: relative;
  padding: var(--section-pad) 1.5rem;
  background: var(--parchment);
  background-image: url('../images/textures/warm-bg.jpg');
  background-size: cover;
  background-blend-mode: overlay;
  text-align: center;
}

/* Gradient bleed: top (dark -> parchment) */
.logline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--dark), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Gradient bleed: bottom (parchment -> dark) */
.logline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--dark-warm), transparent);
  z-index: 1;
  pointer-events: none;
}

.logline__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.logline__quote {
  border: none;
}

.logline__quote p {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.8;
  color: var(--dark);
}

.logline__line {
  display: inline;
}

/* ===================
   STORY
   =================== */
.story {
  position: relative;
}

/* -- Origins -- */
.story__origins {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.story__bg-image {
  position: absolute;
  inset: -15% 0;
}

.story__bg-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.story__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.55);
  box-shadow: inset 0 0 120px 40px rgba(10, 8, 6, 0.4);
}

.story__origins .story__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad) 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.story__text-block p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.story__floating-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

.story__floating-image:hover {
  transform: translateY(-4px);
}

.story__floating-image img {
  width: 100%;
}

/* -- Jingles -- */
.story__jingles {
  position: relative;
  background: var(--dark-warm);
  padding: var(--section-pad) 0;
}

/* Grid overlay for jingles */
.story__jingles::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 151, 63, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 151, 63, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.story__jingles .story__content {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.story__text-block--centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* TV Scroll Strip — natural horizontal scroll */
.story__tv-strip {
  position: relative;
  z-index: 2;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark);
}

.story__tv-strip::-webkit-scrollbar {
  height: 4px;
}

.story__tv-strip::-webkit-scrollbar-track {
  background: var(--dark);
}

.story__tv-strip::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.story__tv-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.story__tv-item {
  flex-shrink: 0;
  width: 450px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.story__tv-item:hover {
  transform: scale(1.03);
}

.story__tv-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Awards image */
.story__awards {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
  border-radius: 6px;
  overflow: hidden;
}

.story__awards img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* -- Italy -- */
.story__italy {
  padding: clamp(2rem, 4vw, 3rem) 0 0;
  background: var(--dark);
}

.story__italy .story__content {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.story__italy-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}

.story__album-art {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
  transform: rotate(-2deg);
  transition: transform 0.4s, box-shadow 0.4s;
}

.story__album-art:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 15px 50px rgba(0,0,0,0.5), 0 0 30px rgba(196, 151, 63, 0.2);
}

/* Siena Divider */
.story__siena-divider {
  width: 100%;
  height: 35vh;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}

.story__siena-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px 30px rgba(10, 8, 6, 0.5);
  pointer-events: none;
  z-index: 1;
}

.story__siena-divider picture {
  display: block;
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 130%;
}

.story__siena-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

/* -- Closing -- */
.story__closing {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  background: var(--dark);
  text-align: center;
}

/* Grid overlay for closing */
.story__closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 151, 63, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 151, 63, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.story__closing-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 1.8;
  color: var(--parchment);
  max-width: 800px;
  margin: 0 auto;
}

/* ===================
   GALLERY
   =================== */
.gallery {
  padding: var(--section-pad) 1.5rem;
  background: var(--dark-warm);
}

.gallery__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 16/9;
  border: 1px solid transparent;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(196, 151, 63, 0.15);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* ===================
   ABOUT
   =================== */
.about {
  position: relative;
  padding: var(--section-pad) 1.5rem;
  background: var(--parchment);
  color: var(--dark);
}

/* Gradient bleed: top (dark -> parchment) */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--dark-warm), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Gradient bleed: bottom (parchment -> dark) */
.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 1;
  pointer-events: none;
}

.about__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about .section-heading {
  color: var(--dark);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about__spec-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__spec {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(10, 8, 6, 0.12);
}

.about__spec dt {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  min-width: 100px;
}

.about__spec dd {
  font-size: 1rem;
  color: var(--dark-warm);
}

.about__note h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.about__note p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-warm);
  margin-bottom: 1rem;
}

.about__signature {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--dark) !important;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===================
   BAND DIVIDER
   =================== */
.band-divider {
  position: relative;
  height: 35vh;
  min-height: 250px;
  overflow: hidden;
}

.band-divider__bg {
  position: absolute;
  inset: -15% 0;
}

.band-divider__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.band-divider__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.4) 0%,
    rgba(10, 8, 6, 0.1) 50%,
    rgba(10, 8, 6, 0.4) 100%
  );
  box-shadow: inset 0 0 120px 40px rgba(10, 8, 6, 0.3);
}

/* ===================
   SCREENING ROOM
   =================== */
.screening {
  padding: var(--section-pad) 1.5rem;
  background: var(--dark);
}

.screening__inner {
  max-width: 900px;
  margin: 0 auto;
}

.screening__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--text-dim);
  text-align: center;
  line-height: 1.7;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

.screening__player {
  border: 1px solid rgba(196, 151, 63, 0.2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(196, 151, 63, 0.05);
}

/* ===================
   CONTACT
   =================== */
.contact {
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  background: var(--dark);
  border-top: 1px solid rgba(196, 151, 63, 0.12);
}

.contact__inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact__subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-dim);
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__field--full {
  grid-column: 1 / -1;
}

.contact__field label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(196, 151, 63, 0.25);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: border-color 0.3s, background 0.3s;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.contact__field select {
  cursor: pointer;
}

.contact__field select option {
  background: var(--dark);
  color: var(--white);
}

.contact__submit {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1rem 2rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.contact__submit:hover {
  background: var(--gold);
  color: var(--dark);
}

.contact__submit:active {
  transform: scale(0.98);
}

@media (max-width: 600px) {
  .contact__form {
    grid-template-columns: 1fr;
  }
}

/* ===================
   FOOTER
   =================== */
.footer {
  padding: 2rem 1.5rem;
  background: var(--dark);
  border-top: 1px solid rgba(196, 151, 63, 0.15);
  text-align: center;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer__credit {
  margin-top: 0.25rem;
  font-family: var(--font-accent);
  font-size: 0.8rem !important;
}

/* ===================
   LIGHTBOX
   =================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 4, 2, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
  z-index: 10001;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.6;
  transition: opacity 0.3s;
  z-index: 10001;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  opacity: 1;
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* ===================
   RESPONSIVE: Story
   =================== */
@media (max-width: 768px) {
  .story__origins .story__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story__floating-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .story__tv-item {
    width: 300px;
  }

  .story__italy-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story__album-art {
    max-width: 220px;
    margin: 0 auto;
  }
}
