/* ============================================================
   LSD – HUXLEY'S LAST TRIP | Main Stylesheet
   Psychedelic + Avant-Garde + Professional Arts Presenter
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  /* Palette */
  --black:        #050508;
  --near-black:   #0d0b14;
  --deep-purple:  #1a0d2e;
  --purple:       #4c1d95;
  --violet:       #7c3aed;
  --magenta:      #a21caf;
  --fuchsia:      #c026d3;
  --cyan:         #06b6d4;
  --lime:         #84cc16;
  --amber:        #f59e0b;
  --white:        #f8f4ff;
  --off-white:    #e8e0f5;
  --muted:        #9b8cb8;
  --glass:        rgba(124, 58, 237, 0.08);
  --glass-border: rgba(192, 38, 211, 0.2);

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Space Grotesk', system-ui, sans-serif;
  --font-mono:   'Space Mono', monospace;

  /* Spacing */
  --container:   1180px;
  --section-gap: clamp(4rem, 8vw, 7rem);

  /* Transitions */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --fast:        0.2s;
  --mid:         0.4s;
  --slow:        0.7s;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--violet); text-decoration: none; transition: color var(--fast) ease; }
a:hover { color: var(--fuchsia); }
a:focus-visible { outline: 2px solid var(--fuchsia); outline-offset: 3px; border-radius: 2px; }
ul { list-style: none; }
sub { font-size: 0.65em; }

/* ── CONTAINER ── */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* ── SECTION SHARED ── */
section {
  padding-block: var(--section-gap);
  position: relative;
  overflow: hidden;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--fuchsia);
}
.section-label.light { color: var(--cyan); }
.section-label.light::before { background: var(--cyan); }

section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 3rem;
}

.lead {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

p { margin-bottom: 1rem; color: var(--off-white); }
p:last-child { margin-bottom: 0; }

strong { color: var(--white); font-weight: 600; }
em { color: var(--off-white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--fast) var(--ease);
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, var(--fuchsia) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(192, 38, 211, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(192, 38, 211, 0.55);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(124, 58, 237, 0.5);
}
.btn-outline:hover {
  border-color: var(--fuchsia);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--off-white);
  border-color: rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

.inline-link {
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--fast);
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
  padding-bottom: 1px;
}
.inline-link:hover { color: var(--white); border-color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--mid) ease, padding var(--mid) ease, box-shadow var(--mid) ease;
}
#navbar.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.65rem 0;
  box-shadow: 0 1px 0 rgba(124, 58, 237, 0.2);
}

.nav-inner {
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-lsd {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--violet), var(--fuchsia), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.nav-links li {
  display: contents;
}
.nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e8e2f0;
  padding: 0.4rem 0.5rem;
  border-radius: 3px;
  transition: color var(--fast), background var(--fast);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cyan); background: var(--glass); }
.nav-links a.active { color: var(--fuchsia); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--violet), var(--fuchsia));
  color: #ffffff;
  padding: 0.4rem 1rem;
}
.nav-links .nav-cta:hover { opacity: 0.9; box-shadow: 0 0 12px rgba(192, 38, 211, 0.4); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: transform var(--fast), opacity var(--fast);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Animated blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.blob-1 {
  width: 55vmax;
  height: 55vmax;
  background: radial-gradient(circle, #7c3aed 0%, #4c1d95 60%, transparent 100%);
  top: -20%;
  left: -15%;
  animation-duration: 14s;
}
.blob-2 {
  width: 45vmax;
  height: 45vmax;
  background: radial-gradient(circle, #c026d3 0%, #7c3aed 50%, transparent 100%);
  top: 10%;
  right: -10%;
  animation-duration: 11s;
  animation-delay: -4s;
}
.blob-3 {
  width: 35vmax;
  height: 35vmax;
  background: radial-gradient(circle, #06b6d4 0%, #4c1d95 60%, transparent 100%);
  bottom: -10%;
  left: 20%;
  animation-duration: 17s;
  animation-delay: -7s;
}
.blob-4 {
  width: 30vmax;
  height: 30vmax;
  background: radial-gradient(circle, #a21caf 0%, #1a0d2e 70%, transparent 100%);
  bottom: 20%;
  right: 5%;
  animation-duration: 13s;
  animation-delay: -2s;
}

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(3%, 2%) scale(1.04); }
  66%  { transform: translate(-2%, 4%) scale(0.97); }
  100% { transform: translate(4%, -2%) scale(1.06); }
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 2rem 1.25rem;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s var(--ease) 0.35s forwards;
}

.hero-lsd {
  display: block;
  font-size: clamp(5rem, 18vw, 14rem);
  background: linear-gradient(135deg, #e879f9 0%, #a855f7 30%, #38bdf8 70%, #84cc16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite, fadeSlideUp 0.9s var(--ease) 0.35s forwards;
  opacity: 0;
  letter-spacing: -0.02em;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-dash {
  display: none;
}

.hero-subtitle {
  display: block;
  font-size: clamp(1.5rem, 4.5vw, 3.8rem);
  color: var(--off-white);
  font-weight: 400;
  font-style: italic;
  margin-top: 0.25rem;
  letter-spacing: 0.01em;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.55s forwards;
}
.hero-tagline strong { color: var(--off-white); font-weight: 500; }
.hero-tagline:not(.hero-tagline-secondary) {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.hero-tagline-secondary {
  font-size: 0.95rem;
  color: var(--muted);
  opacity: 0.8;
  margin-top: -0.5rem;
  animation-delay: 0.65s !important;
}

.hero-quote {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  display: inline-block;
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.7s forwards;
}
.hero-quote em { color: var(--off-white); font-style: italic; font-size: 1.2rem; }
.hero-quote-source {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.85s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--violet), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: linear-gradient(180deg, var(--black) 0%, var(--near-black) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 { margin-bottom: 1.25rem; }

.about-highlights {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  transition: border-color var(--fast), background var(--fast);
}
.highlight-item:hover {
  border-color: var(--violet);
  background: rgba(124, 58, 237, 0.12);
}
.highlight-item i {
  color: var(--fuchsia);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.highlight-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.highlight-item span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Molecule art */
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.molecule-art {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.mol-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
  animation: molSpin linear infinite;
}
.mol-ring-1 {
  width: 250px; height: 250px;
  border-color: rgba(124, 58, 237, 0.3);
  animation-duration: 20s;
}
.mol-ring-2 {
  width: 180px; height: 180px;
  border-color: rgba(192, 38, 211, 0.4);
  animation-duration: 15s;
  animation-direction: reverse;
}
.mol-ring-3 {
  width: 110px; height: 110px;
  border-color: rgba(6, 182, 212, 0.4);
  animation-duration: 10s;
}
@keyframes molSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.mol-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.mol-center span {
  display: block;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--violet), var(--fuchsia));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mol-center small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.mol-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fuchsia);
  box-shadow: 0 0 10px var(--fuchsia);
  top: 50%;
  left: 50%;
}
.d1 { transform: translate(-50%, -50%) translate(125px, 0);    animation: dotOrbit 20s linear infinite; }
.d2 { transform: translate(-50%, -50%) translate(-125px, 0);   animation: dotOrbit 20s linear infinite 10s; }
.d3 { transform: translate(-50%, -50%) translate(0, 90px);     animation: dotOrbit 15s linear infinite reverse; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.d4 { transform: translate(-50%, -50%) translate(0, -90px);    animation: dotOrbit 15s linear infinite reverse 7.5s; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.d5 { transform: translate(-50%, -50%) translate(55px, 55px);  animation: dotOrbit 10s linear infinite; background: var(--lime); box-shadow: 0 0 10px var(--lime); width: 6px; height: 6px; }
.d6 { transform: translate(-50%, -50%) translate(-55px, -55px);animation: dotOrbit 10s linear infinite 5s; background: var(--amber); box-shadow: 0 0 10px var(--amber); width: 6px; height: 6px; }

@keyframes dotOrbit {
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(125px); }
}
.d3, .d4 { --orbit-r: 90px; }
@keyframes dotOrbitSm {
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(var(--orbit-r)); }
}

.date-marker {
  text-align: center;
  padding: 1.25rem 2rem;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  border-radius: 4px;
}
.date-day {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--off-white);
}
.date-year {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fuchsia);
  letter-spacing: 0.1em;
}
.date-note {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ============================================================
   SYNOPSIS
   ============================================================ */
#synopsis {
  background: var(--near-black);
}
#synopsis::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
}

.synopsis-prose {
  max-width: 72ch;
}
.synopsis-prose p {
  font-size: 1.05rem;
  color: var(--off-white);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.synopsis-prose p:last-child { margin-bottom: 0; }

.synopsis-scenes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.scene-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 1.5rem;
  position: relative;
  transition: border-color var(--mid), transform var(--mid), box-shadow var(--mid);
  overflow: hidden;
}
.scene-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--fuchsia));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--mid) var(--ease);
}
.scene-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(76, 29, 149, 0.2);
}
.scene-card:hover::before { transform: scaleX(1); }

.scene-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 0.5rem;
}
.scene-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.scene-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   CAST
   ============================================================ */
#cast {
  background: linear-gradient(180deg, var(--near-black) 0%, var(--deep-purple) 100%);
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.cast-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 1.5rem;
  transition: border-color var(--mid), transform var(--mid);
}
.cast-card:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
}
.cast-card.featured {
  border-color: rgba(192, 38, 211, 0.35);
  background: rgba(192, 38, 211, 0.06);
}
.cast-card.trio {
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.05);
}

.cast-voice {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 0.4rem;
}
.cast-card.trio .cast-voice { color: var(--cyan); }

.cast-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.trio-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  font-weight: 400;
}
.cast-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.instrumentation-block {
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 6px;
  padding: 2rem;
}
.instrumentation-block h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.instrumentation-block h3 i { color: var(--cyan); }
.instrumentation-block p { font-size: 0.95rem; color: var(--off-white); }

.instrumentation-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-border);
}
.instr-column ul {
  list-style: none;
  padding: 0;
}
.instr-column ul li {
  font-size: 0.9rem;
  color: var(--off-white);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  display: flex;
  justify-content: flex-start;
  gap: 0.35em;
}
.instr-column ul li span {
  color: var(--muted);
  font-size: 0.82rem;
}
.instr-partch-label {
  font-size: 0.82rem !important;
  color: var(--cyan) !important;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem !important;
}
.instr-partch-label span {
  color: var(--muted);
  font-style: italic;
}
.partch-column ul li {
  color: var(--off-white);
}

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

/* ============================================================
   PRODUCTION HISTORY
   ============================================================ */
#history {
  background: var(--deep-purple);
}
#history::before, #history::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
}
#history::before { top: 0; background: linear-gradient(90deg, transparent, var(--fuchsia), transparent); }
#history::after  { bottom: 0; background: linear-gradient(90deg, transparent, var(--violet), transparent); }

.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0.75rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--violet), var(--fuchsia), var(--cyan));
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-3rem + 0.75rem - 6px);
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--fuchsia);
  box-shadow: 0 0 12px rgba(192, 38, 211, 0.6);
  border: 2px solid var(--deep-purple);
}
.timeline-item.status-item::before {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 0.4rem;
}
.timeline-year.now { color: var(--cyan); }

.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.timeline-location {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.timeline-location i { color: var(--violet); }
.timeline-content p { font-size: 0.95rem; color: var(--off-white); margin-bottom: 0.75rem; }

.timeline-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
  padding-bottom: 1px;
  transition: color var(--fast), border-color var(--fast);
  text-decoration: none;
}
.timeline-link:hover { color: var(--white); border-color: var(--white); }

.timeline-content.current {
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 6px;
  padding: 1.5rem;
}
.contact-email-display {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.contact-email-display strong {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

/* ============================================================
   PRESS
   ============================================================ */
#press {
  background: var(--near-black);
}

.press-featured {
  margin-bottom: 3rem;
}
.press-quote-large {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  position: relative;
}
.press-quote-large::before {
  content: none;
}
.press-quote-large p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
.press-quote-large cite {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fuchsia);
  font-style: normal;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.press-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 1.5rem;
  position: relative;
  transition: border-color var(--mid), transform var(--mid);
}
.press-card:hover {
  border-color: var(--violet);
  transform: translateY(-2px);
}
.press-card::before {
  content: none;
}
.press-card p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-top: 1rem;
}
.press-card cite {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 1.5rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
}
.press-logo-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.press-logo-sep { color: var(--violet); }

/* ============================================================
   MEDIA
   ============================================================ */
#media {
  background: linear-gradient(180deg, var(--near-black) 0%, var(--deep-purple) 100%);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.media-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--mid), transform var(--mid), box-shadow var(--mid);
}
.media-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(76, 29, 149, 0.25);
}

.media-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
}
.media-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background var(--fast);
}
.media-card:hover .media-thumb::after { background: rgba(0,0,0,0.1); }

.media-play-btn {
  position: relative;
  z-index: 1;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: transform var(--fast), background var(--fast);
  border: 2px solid rgba(255,255,255,0.3);
}
.media-card:hover .media-play-btn {
  transform: scale(1.1);
  background: rgba(192, 38, 211, 0.4);
}

.media-scene-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.media-info { padding: 1.25rem; }
.media-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.media-info p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.media-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--fast);
  text-decoration: none;
}
.media-link:hover { color: var(--fuchsia); }

.media-card.all-scenes {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-all-inner {
  text-align: center;
  padding: 2rem;
}
.media-all-inner i {
  font-size: 2.5rem;
  color: var(--violet);
  margin-bottom: 1rem;
  display: block;
}
.media-all-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.media-all-inner p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.25rem; }

.partch-note {
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 6px;
  padding: 2rem;
}
.partch-note h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.partch-note h3 i { color: var(--cyan); }
.partch-note p { font-size: 0.92rem; color: var(--off-white); margin-bottom: 0.75rem; }

/* ============================================================
   CREATORS
   ============================================================ */
#creators {
  background: var(--deep-purple);
}

.creators-grid {
  display: grid;
  gap: 2rem;
}

.creator-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 2rem;
  align-items: stretch !important;
  transition: border-color var(--mid), box-shadow var(--mid);
}
.creator-card .creator-photo {
  width: 100% !important;
  flex-shrink: 0;
}
.creator-card .creator-photo img {
  width: 100% !important;
  height: 320px !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 6px;
  display: block !important;
  margin-bottom: 0;
}
.creator-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 8px 32px rgba(76, 29, 149, 0.15);
}

.creator-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--fuchsia));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.creator-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.creator-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 0.75rem !important;
}
.creator-info p { font-size: 0.92rem; color: var(--off-white); }

/* ============================================================
   WHY PRODUCE
   ============================================================ */
#why-produce {
  background: var(--near-black);
}
#why-produce::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.reason-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 1.75rem;
  transition: border-color var(--mid), transform var(--mid), box-shadow var(--mid);
}
.reason-card:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(76, 29, 149, 0.2);
}
.reason-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.reason-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.reason-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--deep-purple);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.contact-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.contact-blob-1 {
  position: absolute;
  width: 50vmax; height: 50vmax;
  background: radial-gradient(circle, rgba(192, 38, 211, 0.2) 0%, transparent 70%);
  top: -20%; left: -10%;
}
.contact-blob-2 {
  position: absolute;
  width: 40vmax; height: 40vmax;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  bottom: -15%; right: -5%;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

#contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-detail i { color: var(--fuchsia); }
.contact-detail a { color: var(--muted); }
.contact-detail a:hover { color: var(--off-white); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--black);
  padding-block: 3rem;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--violet), var(--fuchsia));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem !important;
}
.footer-copyright { font-size: 0.78rem; color: var(--muted); margin: 0; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
}
.footer-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e8e2f0;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  transition: color var(--fast), background var(--fast);
  text-decoration: none;
  white-space: nowrap;
}
.footer-nav a:hover { color: #67e8f9; background: var(--glass); }

.footer-credit {
  text-align: right;
}
.footer-credit p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.footer-ext a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--violet);
  text-decoration: none;
}
.footer-ext a:hover { color: var(--fuchsia); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }

/* ============================================================
   KEYFRAMES UTILITIES
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .molecule-art { width: 200px; height: 200px; }
  .mol-ring-1 { width: 180px; height: 180px; }
  .mol-ring-2 { width: 130px; height: 130px; }
  .mol-ring-3 { width: 80px; height: 80px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-credit { text-align: left; }
}

@media (max-width: 768px) {
  :root { --section-gap: clamp(3rem, 6vw, 5rem); }

  .nav-toggle { display: flex; z-index: 1001; position: relative; }
  .nav-links, #nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-links.open, #nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li, #nav-links li { display: block; width: 100%; text-align: center; }
  .nav-links a, #nav-links a {
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    color: #e8e2f0;
    white-space: normal;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .creator-card {
    display: flex;
    flex-direction: column;
  }
  .creator-avatar {
    width: 56px; height: 56px;
    font-size: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-credit { text-align: center; }
  .footer-nav { justify-content: center; }

  .contact-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .press-quote-large { padding: 2rem 1.25rem; }
  .timeline { padding-left: 2rem; }
}

@media (max-width: 600px) {
  .ncp-photos { grid-template-columns: 1fr !important; }
}
