/* ============ AHUURRA ANDREW — cinematic scroll portfolio ============ */
/* Theme: ink black · violet→emerald gradient · white
   Type:  Helvetica Neue Bold Condensed (display) · Jost (body) · AJenson Pro Display Italic (accents)
   Logo:  Andrew's signature, gradient-masked + animated */

@font-face { font-family: 'HN Cond'; src: url('../assets/fonts/HelveticaNeue-BoldCond.otf') format('opentype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'HN Cond'; src: url('../assets/fonts/Helvetica LT 77 Bold Condensed.ttf') format('truetype'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('../assets/fonts/Jost300Light.otf') format('opentype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('../assets/fonts/Jost400Book.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('../assets/fonts/Jost500Medium.otf') format('opentype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('../assets/fonts/Jost600Semi.otf') format('opentype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Fira Italic'; src: url('../assets/fonts/FiraSans-LightItalic.otf') format('opentype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Fira Italic'; src: url('../assets/fonts/FiraSans-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }

:root {
  --ink: #050505;
  --ink-2: #0a0a0f;
  --violet: #8b5cf6;
  --violet-soft: #a78bfa;
  --violet-deep: #6d28d9;
  --green: #34d399;
  --green-deep: #059669;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.55);
  --orange: #ff8b00;
  --grad: linear-gradient(115deg, #a78bfa 0%, #8b5cf6 38%, #34d399 100%);
  --grad-soft: linear-gradient(115deg, rgba(139, 92, 246, 0.16), rgba(52, 211, 153, 0.12));
  --display: 'Zoran Pro', 'HN Cond', 'Helvetica Neue', 'Arial Narrow', sans-serif;
  --body: 'Jost', 'Gotham', 'Helvetica Neue', sans-serif;
  --serif-it: 'Fira Italic', 'Fira Sans', sans-serif;
}

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

html { background: var(--ink); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--violet); color: #fff; }

/* ---------- signature logo ---------- */
.sig {
  display: block;
  aspect-ratio: 1104 / 857;
  background: var(--grad);
  background-size: 220% 220%;
  -webkit-mask: url('../assets/img/signature-bold.png') no-repeat center / contain;
  mask: url('../assets/img/signature-bold.png') no-repeat center / contain;
  animation: sig-shimmer 7s ease-in-out infinite alternate;
}
@keyframes sig-shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}
.sig-reveal { clip-path: inset(0 100% 0 0); animation: sig-sign 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.15s forwards, sig-shimmer 7s ease-in-out 1.7s infinite alternate; }
@keyframes sig-sign { to { clip-path: inset(0 0 0 0); } }
.sig-nav { width: 58px; filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.35)); }
.sig-preloader {
  width: min(320px, 62vw); margin: 0 auto;
  filter: drop-shadow(0 0 26px rgba(139, 92, 246, 0.4)) drop-shadow(0 0 40px rgba(52, 211, 153, 0.18));
}
.footer-sig .sig {
  width: 130px; margin: 0 auto 2.2rem;
  filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.35));
}
.sig-hero-canvas {
  display: block;
  width: clamp(130px, 15vw, 230px);
  aspect-ratio: 1104 / 857;
  margin: 1rem auto 0;
  transform: rotate(-3deg);
  pointer-events: none;
  filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.5)) drop-shadow(0 0 32px rgba(52, 211, 153, 0.22));
}

/* ---------- gradient text helper ---------- */
.grad-text, .section-tag, .hero-kicker {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -100%;
  width: 300%; height: 300%;
  pointer-events: none; z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -1%); }
  75% { transform: translate(-1%, -2%); }
  100% { transform: translate(2%, 1%); }
}

/* ---------- spine / progress ---------- */
.spine {
  position: fixed; top: 0; right: 0; width: 3px; height: 100vh;
  background: rgba(255, 255, 255, 0.08); z-index: 8000;
}
.spine i {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(to bottom, var(--violet-soft), var(--violet), var(--green));
  transform-origin: top; transform: scaleY(0);
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: radial-gradient(ellipse at 30% 20%, rgba(109, 40, 217, 0.14), transparent 55%),
              radial-gradient(ellipse at 75% 85%, rgba(5, 150, 105, 0.10), transparent 55%),
              var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-count {
  display: block; margin-top: 1.6rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.3em; color: var(--green);
  font-variant-numeric: tabular-nums;
}
.preloader-bar {
  width: min(320px, 60vw); height: 1px; margin: 1.2rem auto 0;
  background: rgba(255, 255, 255, 0.15);
}
.preloader-bar i {
  display: block; height: 100%; width: 100%;
  background: var(--grad);
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.2s ease-out;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 7000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.2rem;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.55), transparent);
}
.nav a { color: var(--white); text-decoration: none; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.75; transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.55em 1.2em; border-radius: 2em;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.nav-cta:hover {
  border-color: var(--violet-soft);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.12);
}
@media (max-width: 720px) { .nav-links { display: none; } }

/* ---------- shared canvas sections ---------- */
.seq-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.section-tag {
  font-family: var(--body); font-weight: 600;
  font-size: 0.76rem; letter-spacing: 0.42em; text-transform: uppercase;
}

/* ---------- hero ---------- */
.hero { position: relative; }
.hero-pin { position: relative; height: 100vh; overflow: hidden; }
.hero-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(109, 40, 217, 0.16), transparent 55%),
    radial-gradient(ellipse at 82% 70%, rgba(5, 150, 105, 0.12), transparent 55%),
    radial-gradient(ellipse at center 40%, transparent 30%, rgba(5, 5, 5, 0.55) 100%),
    linear-gradient(to bottom, rgba(5, 5, 5, 0.5) 0%, transparent 25%, transparent 70%, var(--ink) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding-bottom: max(10vh, 5.8rem); /* always reserves room for the scroll cue below the subtitle */
  text-align: center; pointer-events: none;
}
.hero-kicker {
  font-weight: 600;
  font-size: 0.76rem; letter-spacing: 0.45em;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.88; color: var(--white);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.hero-line { display: block; overflow: hidden; }
.hero-line-1 { position: relative; z-index: 3; }
.hero-line-2 { position: relative; z-index: 2; }
.hero-line .ch {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.hero-line-2 .ch {
  background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 42%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 1rem; max-width: 44em;
  font-size: clamp(0.9rem, 1.35vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.05em; color: var(--white-dim);
}
.hero-sub em, .music-sub em {
  font-family: var(--body); font-style: normal; font-weight: 500;
  font-size: 1em; color: rgba(255, 255, 255, 0.82);
}
.hero-scrollcue {
  position: absolute; bottom: 0.9rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.62rem; letter-spacing: 0.5em; color: var(--white-dim);
}
.hero-scrollcue i {
  width: 1px; height: 22px;
  background: linear-gradient(to bottom, var(--violet), var(--green));
  animation: cue 1.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue { 0% { transform: scaleY(0); } 55% { transform: scaleY(1); } 100% { transform: scaleY(0); opacity: 0; } }

/* ---------- stats ---------- */
.stats {
  padding: 16vh 6vw;
  background: radial-gradient(ellipse 60% 50% at 20% 0%, rgba(109, 40, 217, 0.08), transparent),
              radial-gradient(ellipse 60% 50% at 85% 100%, rgba(5, 150, 105, 0.06), transparent),
              var(--ink);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem;
  max-width: 1500px; margin: 0 auto;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  color: var(--white); font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-num::after { content: attr(data-shown-suffix); color: var(--orange); }
.stat-bar-track {
  display: block; width: 100%; height: 4px; margin-top: 1rem;
  background: rgba(255, 255, 255, 0.08); border-radius: 3px; overflow: hidden;
}
.stat-bar-fill {
  display: block; height: 100%; width: 0%;
  background: var(--grad); border-radius: 3px;
}
.stat-label {
  display: block; margin-top: 0.9rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--white-dim);
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stats-grid .stat:last-child { grid-column: span 2; } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; padding: 3.5vh 0; border-top: 1px solid rgba(139, 92, 246, 0.18); border-bottom: 1px solid rgba(52, 211, 153, 0.14); }
.marquee-track { display: flex; white-space: nowrap; will-change: transform; }
.marquee-track span {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.32);
  text-transform: uppercase; padding-right: 2rem;
}

/* ---------- manifesto ---------- */
.manifesto { padding: 20vh 8vw; max-width: 1200px; margin: 0 auto; }
.manifesto-text {
  font-size: clamp(1.5rem, 3.4vw, 3rem);
  font-weight: 300;
  line-height: 1.4;
}
.manifesto-text .word { opacity: 0.14; }
.manifesto-text em {
  font-family: var(--body); font-style: normal; font-weight: 400;
  font-size: 1em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.manifesto-meta {
  margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: 1rem 3rem;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-dim);
}

/* ---------- pillars ---------- */
.pillars { position: relative; }
.pillars-pin { position: relative; height: 100vh; overflow: hidden; }
.pillars-veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.55) 45%, rgba(5, 5, 5, 0.15) 100%),
              radial-gradient(ellipse at 90% 10%, rgba(109, 40, 217, 0.10), transparent 50%);
}
.pillars-head { position: absolute; top: 12vh; left: 8vw; z-index: 3; }
.pillar {
  position: absolute; left: 8vw; bottom: 14vh; z-index: 3;
  max-width: 640px;
  opacity: 0; visibility: hidden;
}
.pillar-index {
  font-family: var(--body); font-weight: 600; font-size: 1rem; letter-spacing: 0.2em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 0.6rem;
}
.pillar-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.92; text-transform: uppercase;
}
.pillar-copy {
  margin-top: 1.4rem; font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  font-weight: 400;
  line-height: 1.7; color: var(--white-dim); max-width: 36em;
}

/* ---------- consulting ---------- */
.consulting { padding: 18vh 6vw; max-width: 1400px; margin: 0 auto; }
.consulting-head { max-width: 900px; }
.consulting-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.6rem, 6.8vw, 5.6rem);
  line-height: 0.96; text-transform: uppercase;
  margin-top: 0.8rem;
}
.consulting-intro {
  margin-top: 1.6rem; font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 400; line-height: 1.75; color: var(--white-dim); max-width: 52em;
}
.consulting-grid {
  margin-top: 5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.consulting-card { background: var(--ink); padding: 2.4rem 2.2rem; }
.consulting-card-index {
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.consulting-card-title {
  margin-top: 0.9rem; font-family: var(--display); font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.7rem); text-transform: uppercase; line-height: 1.15;
}
.consulting-card-copy {
  margin-top: 0.9rem; font-size: 0.95rem; font-weight: 400;
  line-height: 1.6; color: var(--white-dim); max-width: 32em;
}
@media (max-width: 800px) { .consulting-grid { grid-template-columns: 1fr; } }
.consulting-clients { margin-top: 4.5rem; }
.consulting-clients-label {
  font-family: var(--body); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.4em; color: var(--white-dim);
}
.consulting-clients-list {
  margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.7rem;
}
.client-badge {
  font-size: 0.82rem; font-weight: 500; color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.6em 1.2em; border-radius: 2em;
  background: rgba(255, 255, 255, 0.03);
}
.client-badge-more { color: var(--white-dim); border-style: dashed; background: none; }

/* ---------- work ---------- */
.work { position: relative; }
.work-pin { position: relative; height: 100vh; overflow: hidden; }
.work-veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.35) 40%, rgba(5, 5, 5, 0.75) 100%),
              radial-gradient(ellipse at 10% 90%, rgba(5, 150, 105, 0.08), transparent 50%);
}
.work-head { position: absolute; top: 12vh; left: 8vw; z-index: 3; }
.work-card {
  position: absolute; z-index: 3;
  left: 50%; top: 50%;
  width: min(700px, 86vw);
  transform: translate(-50%, -50%);
  padding: 2.6rem 3rem;
  background: linear-gradient(140deg, rgba(139, 92, 246, 0.07), rgba(5, 5, 5, 0.55) 40%),
              rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.work-card:hover {
  border-color: rgba(139, 92, 246, 0.65);
  box-shadow: 0 0 44px rgba(139, 92, 246, 0.22), 0 0 90px rgba(52, 211, 153, 0.12);
}
.work-card-year {
  font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.work-card-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.92; margin: 0.7rem 0 1rem;
}
.work-card-pitch { font-size: 1.02rem; font-weight: 400; line-height: 1.65; color: var(--white-dim); }
.work-card-role {
  display: inline-block; margin-top: 1.4rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.26em; color: var(--white);
  border: 1px solid rgba(139, 92, 246, 0.45);
  padding: 0.5em 1em; border-radius: 2em;
}

/* ---------- filmography ---------- */
.films { padding: 18vh 6vw; max-width: 1500px; margin: 0 auto; }
.films-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 1.5rem 3rem; margin-bottom: 4rem; }
.films-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 8.5rem); line-height: 0.95;
}
.films-controls { display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem; margin-left: auto; }
.films-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.films-filter {
  font-family: var(--body); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-dim); background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.55em 1.2em; border-radius: 2em; cursor: pointer;
  transition: all 0.3s;
}
.films-filter:hover { color: var(--white); border-color: var(--violet-soft); }
.films-filter.is-active { background: var(--grad); border-color: transparent; color: #04120c; font-weight: 600; }
.films-time-filters { padding-left: 1.4rem; border-left: 1px solid rgba(255, 255, 255, 0.14); }
@media (max-width: 560px) { .films-time-filters { padding-left: 0; border-left: 0; } }
.films-list-wrap { position: relative; overflow: hidden; max-height: 3200px; transition: max-height 0.6s ease; }
.films-list-wrap.is-collapsed { max-height: 620px; }
.films-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 8rem;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none; opacity: 0; transition: opacity 0.4s ease;
}
.films-list-wrap.is-collapsed .films-fade { opacity: 1; }
.films-toggle {
  display: block; margin: 2.4rem auto 0;
  font-family: var(--body); font-weight: 600;
  font-size: 0.76rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--white); background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.85em 2.2em; border-radius: 2em; cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.films-toggle:hover { border-color: var(--violet-soft); box-shadow: 0 0 24px rgba(139, 92, 246, 0.3); }
.films-year { margin-bottom: 0.5rem; }
.films-year-label {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  color: transparent; -webkit-text-stroke: 1px rgba(167, 139, 250, 0.55);
  display: block; padding: 1.6rem 0 0.8rem;
}
.film-row {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1.5rem;
  padding: 0.85rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s, padding-left 0.25s;
}
.film-row:hover { background: linear-gradient(90deg, rgba(139, 92, 246, 0.10), rgba(52, 211, 153, 0.05)); padding-left: 1.2rem; }
.film-row.is-hidden { display: none; }
.film-title { font-size: clamp(1rem, 1.7vw, 1.35rem); font-weight: 400; }
.film-type { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.22em; color: var(--white-dim); text-transform: uppercase; }
.film-roles { display: flex; gap: 0.4rem; }
.film-role {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.16em;
  padding: 0.35em 0.8em; border-radius: 2em;
  border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white-dim);
}
.film-role.is-score { border-color: rgba(139, 92, 246, 0.65); color: var(--violet-soft); }
.film-rating { font-size: 0.78rem; color: var(--orange); font-variant-numeric: tabular-nums; min-width: 2.4em; text-align: right; }
@media (max-width: 720px) {
  .film-row { grid-template-columns: 1fr auto; }
  .film-rating { display: none; }
}

/* ---------- music ---------- */
.music { padding: 14vh 6vw 10vh; max-width: 1500px; margin: 0 auto; }
.music-head { margin-bottom: 3.5rem; }
.music-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 8.5rem); line-height: 0.95;
}
.music-sub { margin-top: 1rem; color: var(--white-dim); font-weight: 400; letter-spacing: 0.05em; }
.music-albums {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.music-album iframe { border-radius: 14px; border: 0; display: block; }
@media (max-width: 1000px) { .music-albums { grid-template-columns: 1fr; } }
.music-more { margin-top: 3.5rem; }
.music-more-label {
  font-family: var(--body); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.4em; color: var(--white-dim);
}
.music-more-list {
  margin-top: 1.2rem; list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem 1.5rem;
}
.music-more-list li {
  display: flex; justify-content: space-between; gap: 0.8rem;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}
.music-more-title { color: var(--white); }
.music-more-year { color: var(--white-dim); font-variant-numeric: tabular-nums; }
@media (max-width: 1000px) { .music-more-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .music-more-list { grid-template-columns: 1fr; } }
.music-tracks { margin-top: 3rem; }
.music-tracks-label {
  font-weight: 600;
  font-size: 0.76rem; letter-spacing: 0.42em; text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.music-tracklist {
  margin-top: 1.4rem; columns: 2; column-gap: 4rem;
  font-size: clamp(1rem, 1.6vw, 1.3rem); font-weight: 400; line-height: 2.1;
  list-style-position: inside;
}
.music-tracklist li::marker { color: var(--violet-soft); font-size: 0.8em; }
@media (max-width: 720px) { .music-tracklist { columns: 1; } }
.music-artist-link {
  display: inline-block; margin-top: 2rem;
  color: var(--green); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 1px solid transparent; transition: border-color 0.3s;
}
.music-artist-link:hover { border-color: var(--green); }

/* ---------- finale ---------- */
.finale {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 14vh 6vw 0;
  background: radial-gradient(ellipse 55% 45% at 22% 75%, rgba(109, 40, 217, 0.16), transparent),
              radial-gradient(ellipse 55% 45% at 78% 80%, rgba(5, 150, 105, 0.13), transparent),
              var(--ink);
}
.finale-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.6rem, 12vw, 12rem);
  line-height: 0.9; text-transform: uppercase;
}
.finale-line { display: block; overflow: hidden; }
.finale-line .ch { display: inline-block; transform: translateY(110%); }
.finale-line:last-child .ch {
  background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 42%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.finale-actions { display: flex; gap: 1.2rem; margin-top: 3.5rem; flex-wrap: wrap; justify-content: center; }
.btn {
  font-family: var(--body); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.26em;
  text-decoration: none; padding: 1.1em 2.6em; border-radius: 3em;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.btn-solid { background: var(--grad); color: #04120c; }
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 12px 44px rgba(139, 92, 246, 0.45), 0 6px 60px rgba(52, 211, 153, 0.25), 0 0 20px rgba(255, 139, 0, 0.18); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.4); color: var(--white); }
.btn-ghost:hover { border-color: var(--violet-soft); box-shadow: 0 0 30px rgba(139, 92, 246, 0.3); transform: translateY(-3px); }

/* ---------- footer ---------- */
.footer { width: 100%; margin-top: 12vh; padding: 3.5rem 0 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-socials { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; justify-content: center; }
.footer-socials a {
  color: var(--white-dim); text-decoration: none;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--green); }
.footer-meta {
  margin-top: 2rem; display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.35);
}

/* ---------- reveal helper ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero-scrollcue i, .sig, .sig-reveal { animation: none; }
  .sig-reveal { clip-path: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
.no-motion .pillars-pin, .no-motion .work-pin { height: auto; min-height: 100vh; padding: 14vh 0; }
.no-motion .pillar, .no-motion .work-card {
  position: relative; left: auto; bottom: auto; top: auto;
  transform: none; opacity: 1; visibility: visible;
  margin: 4rem 8vw;
}
.no-motion .manifesto-text .word { opacity: 1; }

/* ---------- phones: keep the hero inside the screen ---------- */
@media (max-width: 640px) {
  /* the kicker is heavily letter-spaced; at 375px it measured 451px wide and
     was clipped at both ends. Scale the tracking back and let it wrap. */
  .hero-kicker {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.7;
  }
}
@media (max-width: 380px) {
  .hero-kicker { font-size: 0.55rem; letter-spacing: 0.16em; }
}
