@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --bg: #040404;
  --bg-soft: #0b0b0e;
  --panel: rgba(255,255,255,0.05);
  --panel-2: rgba(255,255,255,0.08);
  --text: #f5f5f7;
  --muted: #a7a7b1;

  --red: #d30f38;
  --red-2: #ff5130;
  --red-3: #ff7a2a;

  --yellow: #ffc857;
  --yellow-2: #ffe08a;
  --yellow-3: #f5b942;

  --line: rgba(255,255,255,0.08);
  --shadow: 0 30px 90px rgba(0,0,0,0.42);

  --cursor-size: 10px;
  --cursor-ring: 52px;
  --nav-h: 82px;

  --brand-gradient: linear-gradient(135deg, #ff5130 0%, #d30f38 45%, #ff7a2a 100%);
  --gold-gradient: linear-gradient(135deg, #ffe08a 0%, #ffc857 48%, #f5b942 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.has-custom-cursor,
html.has-custom-cursor * {
  cursor: none !important;
}

body.site-body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(211,15,56,0.13), transparent 22%),
    radial-gradient(circle at 84% 8%, rgba(255,81,48,0.08), transparent 16%),
    linear-gradient(180deg, #020202 0%, #050506 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(255, 200, 87, 0.24);
  color: white;
}

.noise,
.grid-overlay,
.spotlight,
.page-progress,
.intro-screen {
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  background-image: radial-gradient(rgba(255,255,255,0.2) 0.5px, transparent 0.7px);
  background-size: 6px 6px;
  mix-blend-mode: soft-light;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 78%);
}

.spotlight {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40rem;
  height: 40rem;
  z-index: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.88;
  background:
    radial-gradient(circle, rgba(211,15,56,0.14) 0%, rgba(255,81,48,0.09) 18%, rgba(0,0,0,0) 68%);
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  z-index: 110;
  background: rgba(255,255,255,0.04);
}

.page-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--brand-gradient);
  box-shadow: 0 0 20px rgba(211, 15, 56, 0.45);
  transition: width 0.08s linear;
}

/* INTRO */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  background: #050505;
  overflow: hidden;
}

.intro-screen__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 40%),
    linear-gradient(180deg, #060606 0%, #020202 100%);
}

.intro-screen__light {
  position: absolute;
  top: 50%;
  width: 42vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,81,48,0.95), transparent);
  box-shadow: 0 0 30px rgba(211,15,56,0.45);
}

.intro-screen__light--left {
  left: 6%;
}

.intro-screen__light--right {
  right: 6%;
}

.intro-mark {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  justify-items: center;
}

.intro-mark__er {
  display: flex;
  gap: 0.2rem;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.intro-e,
.intro-r {
  display: inline-block;
  color: white;
  text-shadow: 0 0 28px rgba(255,255,255,0.1);
}

.intro-r {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro-mark__ai {
  font-size: 0.82rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  font-weight: 800;
  padding-left: 0.45em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* NAV */
.main-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.72), rgba(0,0,0,0.16), transparent);
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.main-nav.is-scrolled {
  background: rgba(7,7,8,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.brand {
  display: grid;
  gap: 0.1rem;
  line-height: 1;
}

.brand-main {
  display: flex;
  align-items: baseline;
  gap: 0.22rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.45rem;
}

.brand-initial {
  display: inline-block;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-name {
  color: white;
}

.brand-sub {
  font-size: 0.56rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro-name-white {
  color: white;
}

.intro-name-red {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  position: relative;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.84);
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: white;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  will-change: transform;
  filter: saturate(1.02) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.10) 22%, rgba(0,0,0,0.48) 68%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 220px rgba(0,0,0,0.8);
}

.hero-topline {
  position: absolute;
  top: calc(var(--nav-h) + 1rem);
  left: 2rem;
  right: 2rem;
  z-index: 4;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-topline span {
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: min(850px, 100%);
  padding-bottom: 4.4rem;
}

.hero-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.3rem, 8.5vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-shadow: 0 10px 40px rgba(0,0,0,0.35);
  will-change: transform;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  font-size: clamp(0.9rem, 1.3vw, 1.15rem);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  padding-left: 0.65em;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 1rem;
  max-width: 46rem;
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.94rem, 1.35vw, 1.04rem);
  line-height: 1.7;
}

.hero-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.hero-meta-line span {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-side-panel {
  position: absolute;
  right: 2rem;
  bottom: 7.5rem;
  z-index: 5;
  width: min(360px, 31vw);
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: 24px;
  background: rgba(10,10,12,0.48);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.side-label {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-side-panel h3 {
  margin-top: 0.45rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-side-panel p {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.side-stats {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.side-stats span {
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-slider-nav {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 6;
  display: flex;
  gap: 0.8rem;
}

.hero-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-nav-btn:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255,255,255,0.16);
  border-color: rgba(211,15,56,0.35);
  box-shadow: 0 0 24px rgba(211,15,56,0.22);
}

.hero-dots {
  position: absolute;
  left: 2rem;
  bottom: 2.2rem;
  z-index: 6;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  max-width: 48%;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  border: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.hero-dot.is-active {
  background: var(--brand-gradient);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(211,15,56,0.35);
}

.hero-bottom-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.28));
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0.95rem 0;
  animation: tickerMove 28s linear infinite;
}

.ticker-track span {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 800;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* BUTTONS */
.btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 0.88rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  will-change: transform;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.16) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary,
.archive-play {
  color: white;
  background: var(--brand-gradient);
  box-shadow: 0 16px 42px rgba(211,15,56,0.24);
}

.btn-primary:hover,
.archive-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(211,15,56,0.34);
}

.btn-secondary {
  color: white;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(211,15,56,0.28);
  background: rgba(255,255,255,0.08);
}

/* SECTIONS */
.section-intro,
.archive-page,
.contact-page {
  position: relative;
  z-index: 5;
}

.section-intro {
  padding: 4rem 2rem 2rem;
}

.section-intro-inner {
  max-width: 780px;
}

.section-label,
.archive-tag,
.modal-label,
.modal-subhead {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-intro h2 {
  margin-top: 0.75rem;
  margin-bottom: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 18ch;
}

.section-intro p {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  max-width: 700px;
  font-size: 0.95rem;
  font-weight: 500;
}

.archive-hero h1,
.contact-copy h1 {
  margin-top: 0.85rem;
  margin-bottom: 1rem;
}

.contact-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.portfolio-title {
  position: relative;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 0 18px rgba(255,255,255,0.04);
  animation: portfolioTitlePulse 4.8s ease-in-out infinite;
}

.portfolio-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.02) 30%,
    rgba(255,255,255,0.16) 50%,
    rgba(255,255,255,0.02) 70%,
    transparent 100%
  );
  transform: translateX(-130%);
  mix-blend-mode: screen;
  animation: portfolioTitleSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes portfolioTitlePulse {
  0%, 100% {
    opacity: 0.88;
    transform: translateY(0px);
    letter-spacing: 0.28em;
  }
  50% {
    opacity: 1;
    transform: translateY(-1px);
    letter-spacing: 0.305em;
  }
}

@keyframes portfolioTitleSweep {
  0%, 60%, 100% {
    transform: translateX(-130%);
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  82% {
    transform: translateX(130%);
    opacity: 0;
  }
}

.archive-hero p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 780px;
  font-size: 0.98rem;
}

/* ROWS / OLD GRID */
.rows-wrap {
  padding: 1rem 0 4rem;
  position: relative;
  z-index: 5;
}

.row-block {
  margin-bottom: 2.3rem;
}

.row-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 0 2rem 0.85rem;
}

.row-head h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.row-head a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.poster-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(460px, 54vw);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2rem 1.2rem;
  scroll-snap-type: x mandatory;
  user-select: none;
}

.poster-row.is-dragging {
  cursor: grabbing !important;
}

.poster-row::-webkit-scrollbar {
  height: 8px;
}

.poster-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
}

.poster-card {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: 28px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #09090b;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  will-change: transform;
}

.poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.07) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.9s ease;
}

.poster-card:hover::after,
.poster-card:focus-visible::after {
  transform: translateX(120%);
}

.poster-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.92);
  transition: transform 0.7s ease, filter 0.25s ease;
}

.poster-card:hover,
.poster-card:focus-visible {
  border-color: rgba(211,15,56,0.32);
  box-shadow: 0 26px 62px rgba(0,0,0,0.6);
  outline: none;
}

.poster-card:hover video,
.poster-card:focus-visible video {
  transform: scale(1.05);
  filter: brightness(0.92) saturate(1.02);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.08) 40%, rgba(0,0,0,0.84) 100%);
}

.poster-badge {
  position: absolute;
  top: 0.95rem;
  left: 0.95rem;
  z-index: 2;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(7,7,8,0.56);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.poster-meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.poster-meta span {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.poster-meta h4 {
  margin-top: 0.35rem;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.poster-meta p {
  margin-top: 0.42rem;
  max-width: 40ch;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
  font-size: 0.78rem;
}

.poster-tags,
.archive-tags {
  margin-top: 0.55rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.poster-tags em,
.archive-tags em {
  font-style: normal;
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.34rem 0.52rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
}

/* ARCHIVE */
.archive-page {
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
}

.archive-hero {
  margin-bottom: 2rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}

.archive-card {
  grid-column: span 12;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.045));
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.archive-card:hover,
.archive-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(211,15,56,0.3);
  outline: none;
}

.archive-media {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #000;
}

.archive-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.7s ease, filter 0.25s ease;
}

.archive-card:hover .archive-media video,
.archive-card:focus-visible .archive-media video {
  transform: scale(1.05);
  filter: brightness(0.94);
}

.archive-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.7));
}

.archive-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding: 1.15rem;
}

.archive-info h3 {
  margin-top: 0.38rem;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.archive-text {
  margin-top: 0.55rem;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.archive-play {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0.82rem 0.95rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* CONTACT */
.contact-page {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  display: flex;
  align-items: center;
}

.contact-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-copy,
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 30px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.contact-copy {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-links {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.contact-links a {
  font-weight: 700;
  transition: color 0.22s ease, transform 0.22s ease;
}

.contact-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.contact-form {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: white;
  padding: 1rem;
  resize: vertical;
  outline: none;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.38);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(211,15,56,0.42);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(211,15,56,0.08);
  transform: translateY(-1px);
}

.contact-submit {
  justify-self: start;
  margin-top: 0.4rem;
}

/* MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(14px);
}

.video-shell {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100vw - 2rem));
  margin: 3vh auto;
  padding: 1rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(16,16,18,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 100px rgba(0,0,0,0.58);
  transform: scale(0.98);
  transition: transform 0.24s ease;
  max-height: 94vh;
  overflow: auto;
}

.video-modal.is-open .video-shell {
  transform: scale(1);
}

.video-shell-player {
  background: black;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
}

.video-shell-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
}

.video-shell-info {
  padding: 1rem 0.2rem 0.2rem;
}

.video-shell-info h3 {
  margin-top: 0.35rem;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-shell-info p:last-child {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.65;
}

.modal-extra {
  margin-top: 1.15rem;
  display: grid;
  gap: 1.2rem;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.modal-tag {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.modal-tag:hover,
.modal-tag.is-active {
  transform: translateY(-1px);
  border-color: rgba(211,15,56,0.38);
  background: rgba(211,15,56,0.16);
  box-shadow: 0 0 18px rgba(211,15,56,0.14);
}

.modal-related-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.modal-clear-filter {
  opacity: 0;
  pointer-events: none;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.18s ease;
}

.modal-clear-filter.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-related-grid {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.related-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(211,15,56,0.32);
  box-shadow: 0 0 18px rgba(211,15,56,0.12);
  outline: none;
}

.related-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.related-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
}

.related-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.5));
}

.related-card__body {
  padding: 0.8rem;
}

.related-card__date {
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.related-card__body h4 {
  margin-top: 0.35rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.related-card__body p:last-child {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.modal-empty {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.9rem;
}

.close-modal {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.close-modal:hover {
  transform: scale(1.08) rotate(90deg);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 18px rgba(211,15,56,0.14);
}

/* CURSOR */
.cursor-dot,
.cursor-ring,
.cursor-caption {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.cursor-dot {
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #f4f4f4);
  box-shadow:
    0 0 18px rgba(255,255,255,0.36),
    0 0 28px rgba(211,15,56,0.28);
  mix-blend-mode: screen;
}

.cursor-ring {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background:
    radial-gradient(circle, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  backdrop-filter: blur(3px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 22px rgba(211,15,56,0.08);
}

.cursor-caption {
  transform: translate(-50%, calc(-50% - 42px));
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(10,10,12,0.84);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(211,15,56,0.08);
}

.has-custom-cursor .cursor-dot,
.has-custom-cursor .cursor-ring,
.has-custom-cursor .cursor-caption {
  opacity: 1;
}

.cursor-hover .cursor-ring {
  width: 94px;
  height: 94px;
  margin-left: -47px;
  margin-top: -47px;
  border-color: rgba(211,15,56,0.34);
  background:
    radial-gradient(circle, rgba(211,15,56,0.10), rgba(255,255,255,0.02));
  box-shadow:
    0 0 30px rgba(211,15,56,0.18),
    0 0 0 1px rgba(255,255,255,0.03) inset;
}

.cursor-down .cursor-ring {
  transform: scale(0.9);
}

.cursor-down .cursor-dot {
  transform: scale(1.28);
}

/* HOME UNIVERSE SECTION */
.universe-section {
  position: relative;
  z-index: 5;
  padding: 2rem 2rem 5rem;
}

.universe-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.universe-title {
  margin-top: 0.7rem;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 12ch;
}

.universe-copy {
  margin-top: 0.8rem;
  max-width: 700px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-size: 0.96rem;
}

.universe-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
  gap: 1.3rem;
  align-items: stretch;
}

.universe-stage-wrap,
.universe-info {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.36);
}

.universe-stage-wrap {
  min-height: 680px;
  cursor: grab;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.03), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(211,15,56,0.08), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.universe-stage-wrap.is-dragging {
  cursor: grabbing;
}

.universe-stage-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.75), transparent 80%);
  opacity: 0.55;
  pointer-events: none;
}

.universe-stage-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.42));
  pointer-events: none;
}

.universe-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38rem;
  height: 38rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(211,15,56,0.12) 0%, rgba(255,81,48,0.08) 22%, rgba(255,200,87,0.04) 38%, transparent 68%);
  filter: blur(22px);
  pointer-events: none;
}

.universe-stage {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.universe-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(180px, 18vw, 260px);
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition:
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    filter 0.22s ease;
}

.universe-node::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.09) 44%, transparent 64%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.universe-node:hover::after,
.universe-node.is-selected::after {
  transform: translateX(130%);
}

.universe-node:hover,
.universe-node.is-selected {
  border-color: rgba(211,15,56,0.36);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 28px rgba(211,15,56,0.14);
}

.universe-node video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.92);
  transition: transform 0.7s ease, filter 0.24s ease;
}

.universe-node:hover video,
.universe-node.is-selected video {
  transform: scale(1.05);
  filter: brightness(0.92) saturate(1.02);
}

.universe-node-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.12) 40%, rgba(0,0,0,0.86) 100%);
  pointer-events: none;
}

.universe-node-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 0.42rem 0.64rem;
  border-radius: 999px;
  background: rgba(8,8,10,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.universe-node-meta {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  z-index: 2;
  pointer-events: none;
}

.universe-node-date {
  display: inline-block;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.universe-node-title {
  margin-top: 0.35rem;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.86rem, 1vw, 1rem);
  line-height: 1.02;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
}

.universe-node-depth {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  pointer-events: none;
}

.universe-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.universe-orbit-ring--1 {
  width: 280px;
  height: 280px;
}

.universe-orbit-ring--2 {
  width: 470px;
  height: 470px;
}

.universe-orbit-ring--3 {
  width: 650px;
  height: 650px;
}

.universe-info {
  padding: 1.3rem 1.2rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.universe-info h3 {
  margin-top: 0.55rem;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.universe-info p {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.92rem;
}

.universe-meta-line {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.universe-meta-line span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.universe-info-actions {
  margin-top: 1.2rem;
}

/* CONTACT PAGE - CLEANER VERSION */
.contact-page--minimal {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  display: block;
}

.contact-single-wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.36);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(211,15,56,0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255,200,87,0.08), transparent 24%);
  pointer-events: none;
}

.contact-panel__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.contact-title-minimal {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 0 18px rgba(255,255,255,0.04);
}

.contact-linkedin {
  position: relative;
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-linkedin::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.contact-linkedin:hover::after {
  transform: scaleX(1);
}

.contact-form--cinema {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.contact-form--cinema .field {
  display: grid;
  gap: 0.45rem;
}

.contact-form--cinema .field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,0.84);
}

.contact-form--cinema .field input,
.contact-form--cinema .field textarea {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.045);
  color: white;
  padding: 1rem 1rem;
  outline: none;
  resize: vertical;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-form--cinema .field input::placeholder,
.contact-form--cinema .field textarea::placeholder {
  color: rgba(255,255,255,0.36);
}

.contact-form--cinema .field input:hover,
.contact-form--cinema .field textarea:hover {
  border-color: rgba(211,15,56,0.22);
  background: rgba(255,255,255,0.06);
}

.contact-form--cinema .field input:focus,
.contact-form--cinema .field textarea:focus {
  border-color: rgba(211,15,56,0.42);
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 4px rgba(211,15,56,0.08),
    0 0 22px rgba(211,15,56,0.08);
}

.contact-form--cinema .contact-submit {
  margin-top: 0.4rem;
  justify-self: start;
}

.contact-linkedin-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(10, 102, 194, 0.14);
  border: 1px solid rgba(10, 102, 194, 0.34);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-linkedin-icon svg {
  width: 20px;
  height: 20px;
  fill: #0a66c2;
  transition: transform 0.22s ease, fill 0.22s ease;
}

.contact-linkedin-icon:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(10, 102, 194, 0.22);
  border-color: rgba(10, 102, 194, 0.58);
  box-shadow: 0 0 22px rgba(10, 102, 194, 0.2);
}

.contact-linkedin-icon:hover svg {
  transform: scale(1.08);
  fill: #3b82f6;
}

/* RESPONSIVE */
@media (min-width: 900px) {
  .archive-card {
    grid-column: span 6;
  }
}

@media (max-width: 1200px) {
  .modal-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .universe-shell {
    grid-template-columns: 1fr;
  }

  .universe-stage-wrap {
    min-height: 620px;
  }

  .universe-stage {
    height: 620px;
  }
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .poster-row {
    grid-auto-columns: minmax(360px, 82vw);
  }

  .hero-side-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 520px);
    margin-top: 1.2rem;
  }

  .hero {
    align-items: end;
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .hero-dots {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: auto !important;
  }

  .cursor-dot,
  .cursor-ring,
  .cursor-caption,
  .spotlight,
  .grid-overlay {
    display: none !important;
  }

  .modal-related-grid {
    grid-template-columns: 1fr;
  }

  .universe-section {
    padding: 2rem 1rem 4rem;
  }

  .universe-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .universe-stage-wrap {
    min-height: 520px;
  }

  .universe-stage {
    height: 520px;
  }

  .universe-node {
    width: 180px;
    border-radius: 18px;
  }

  .universe-orbit-ring--1 {
    width: 220px;
    height: 220px;
  }

  .universe-orbit-ring--2 {
    width: 360px;
    height: 360px;
  }

  .universe-orbit-ring--3 {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 640px) {
  .main-nav {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 0.85rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .hero {
    padding: 8.5rem 1rem 1.5rem;
  }

  .hero-topline {
    top: 7rem;
    left: 1rem;
    right: 1rem;
  }

  .section-intro,
  .archive-page,
  .contact-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .row-head,
  .poster-row {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .archive-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-shell {
    width: calc(100vw - 1rem);
    margin: 3vh auto;
    padding: 0.7rem;
    border-radius: 22px;
  }

  .ticker-track {
    gap: 1.2rem;
  }

  .ticker-track span {
    font-size: 0.66rem;
  }

  .hero-slider-nav {
    right: 1rem;
    bottom: 1rem;
  }

  .hero-dots {
    left: 1rem;
    bottom: 1.3rem;
    max-width: 60%;
  }

  .poster-row {
    grid-auto-columns: minmax(310px, 88vw);
  }

  .section-intro h2 {
    max-width: 100%;
  }

  .contact-page--minimal {
    padding: calc(var(--nav-h) + 2rem) 1rem 3rem;
  }

  .contact-panel {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .contact-title-minimal {
    letter-spacing: 0.16em;
  }
}