/* ═══════════════════════════════════════════
   Mario Schebly — portfolio v2
   Bold. Video-heavy. Painterly. Varied per section.
═══════════════════════════════════════════ */

:root {
  --bg:       #050505;
  --bg-2:     #0B0B0B;
  --bg-3:     #131311;
  --ink:      #F5F1E8;
  --ink-2:    #B8B3A6;
  --ink-3:    #6B6659;
  --line:     #1E1E1C;
  --line-2:   #2A2A27;

  /* Palette sampled from Mario's paintings */
  --c-ochre:  #C9923F;   /* sandstone ochre — self-portrait wall */
  --c-terra:  #B24E27;   /* burnt sienna — his master-copy reds */
  --c-sage:   #6A7E56;   /* muted sage — landscape greens */
  --c-cream:  #E8D9B8;   /* cream — his impressionist highlights */
  --c-ink:    #1A1510;   /* ink black */

  --accent:   var(--c-ochre);
  --accent-2: var(--c-terra);

  --f-display: "Fraunces", ui-serif, Georgia, serif;
  --f-body:    "Inter", ui-sans-serif, system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  --gutter: clamp(20px, 4vw, 56px);
  --maxw: 1600px;

  --t-fast: 200ms;
  --t-med: 420ms;
  --t-slow: 800ms;
  --e-out:    cubic-bezier(.22, 1, .36, 1);
  --e-in-out: cubic-bezier(.76, 0, .24, 1);
  --e-spring: cubic-bezier(.34, 1.56, .64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } .brush-cursor, .cursor-label { display: none !important; } }

img, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "SOFT" 100; }
strong { color: var(--ink); font-weight: 600; }

::selection { background: var(--accent); color: var(--bg); }

/* ─────────────────────────────────────────
   LOADER
───────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: #000;
  display: grid; place-items: center;
  overflow: hidden;
}
.loader__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.1);
  opacity: .85;
}
.loader__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.2), rgba(0,0,0,.8)),
    linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.85));
}
.loader__text {
  position: relative;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: grid; gap: 14px;
  width: min(560px, 80vw);
  padding: 22px 0;
}
.loader__row {
  display: flex; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 12px;
}
.loader__row--progress { align-items: center; gap: 14px; }
.loader__bar { flex: 1; height: 1px; background: rgba(255,255,255,.15); display: block; position: relative; overflow: hidden; }
.loader__bar i {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--ink);
  animation: load-bar 1800ms var(--e-in-out) forwards;
}
@keyframes load-bar { to { width: 100%; } }
.loader__count { min-width: 24px; }

.loader.is-done {
  animation: loader-out 1200ms var(--e-in-out) forwards 1700ms;
}
@keyframes loader-out {
  to { transform: translateY(-100%); }
}

/* ─────────────────────────────────────────
   BRUSH CURSOR
───────────────────────────────────────── */
.brush-cursor {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 150;
  mix-blend-mode: screen;
}
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 151;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  transform: translate(-50%, -140%) scale(.9);
  opacity: 0;
  transition: opacity var(--t-fast) var(--e-out), transform var(--t-med) var(--e-spring);
  white-space: nowrap;
}
.cursor-label.is-on {
  opacity: 1;
  transform: translate(-50%, -140%) scale(1);
}

/* ─────────────────────────────────────────
   SIDE RAILS (vertical labels)
───────────────────────────────────────── */
.rail {
  position: fixed;
  top: 50%;
  z-index: 40;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-3);
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateY(50%);
  pointer-events: none;
}
.rail--left  { left: 18px; }
.rail--right { right: 18px; }
@media (max-width: 900px) { .rail { display: none; } }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--gutter);
  padding: 20px var(--gutter);
  transition: background var(--t-med) var(--e-out), padding var(--t-med) var(--e-out);
}
.nav.is-scrolled {
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--gutter);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.nav__mark { width: 24px; height: 24px; color: var(--ink); transition: color var(--t-med); }
.nav__brand:hover .nav__mark { color: var(--accent); }

.nav__links {
  display: flex; justify-content: center; gap: 28px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t-med) var(--e-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 16px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  transition: transform var(--t-fast) var(--e-out), background var(--t-fast);
}
.nav__cta:hover { background: var(--ink); transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav { grid-template-columns: auto auto; }
  .nav__links { display: none; }
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; height: 100dvh; min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 110px var(--gutter) 30px;
}
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08) brightness(.85);
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,0,0,.15), rgba(0,0,0,.55) 60%),
    linear-gradient(180deg, rgba(5,5,5,.3) 0%, rgba(5,5,5,.2) 40%, rgba(5,5,5,.85) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: .12;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.3' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px;
}

.hero__meta, .hero__title, .hero__foot { position: relative; z-index: 3; }

.hero__reel-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  background: rgba(5,5,5,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 10px #4ADE80;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero__title {
  align-self: center;
  font-family: var(--f-display);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.035em;
  color: var(--ink);
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero__title .hero__line { display: block; }
.hero__line.line-1 {
  font-size: clamp(60px, 13vw, 220px);
  letter-spacing: -.04em;
}
.hero__line.line-2 {
  font-size: clamp(34px, 6vw, 96px);
  line-height: 1.05;
  letter-spacing: -.025em;
  padding-left: 1vw;
  margin-top: .35em;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  color: var(--ink-2);
}
.hero__line.line-2 em {
  color: var(--ink);
  font-style: italic;
}

/* split-word up animation */
.hero__title [data-split] {
  display: inline-block;
  will-change: transform, opacity;
  transform: translateY(.4em);
  opacity: 0;
}
.is-loaded .hero__title [data-split] {
  animation: split-up 900ms var(--e-out) forwards;
}
.is-loaded .hero__title .line-1 [data-split]:nth-child(1){ animation-delay: 80ms; }
.is-loaded .hero__title .line-1 [data-split]:nth-child(2){ animation-delay: 180ms; }
.is-loaded .hero__title .line-2 [data-split]:nth-child(1){ animation-delay: 320ms; }
.is-loaded .hero__title .line-2 [data-split]:nth-child(2){ animation-delay: 380ms; }
.is-loaded .hero__title .line-2 [data-split]:nth-child(3){ animation-delay: 440ms; }
.is-loaded .hero__title .line-2 [data-split]:nth-child(4){ animation-delay: 490ms; }
.is-loaded .hero__title .line-2 [data-split]:nth-child(5){ animation-delay: 540ms; }

@keyframes split-up {
  to { transform: translateY(0); opacity: 1; }
}

.hero__foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__cred {
  display: grid; gap: 3px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
}
.hero__cred--r { justify-items: end; text-align: right; }
.hero__cred-k { color: var(--ink-3); }
.hero__cred-v { color: var(--ink); font-size: 12px; }
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__scroll svg { animation: bob 1.6s ease-in-out infinite; color: var(--accent); }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

@media (max-width: 720px) {
  .hero { padding-top: 90px; }
  .hero__foot { grid-template-columns: 1fr; gap: 18px; }
  .hero__cred--r { justify-items: start; text-align: left; }
  .hero__scroll { order: 3; align-items: flex-start; }
}

/* ─────────────────────────────────────────
   MARQUEE
───────────────────────────────────────── */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.marquee__track {
  display: flex; gap: 32px; align-items: center;
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -.02em;
  animation: marq 30s linear infinite;
  width: max-content;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.marquee__track span:nth-child(even) { color: var(--accent); }
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   SECTION HEAD (shared)
───────────────────────────────────────── */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px var(--gutter) 50px;
  display: grid; gap: 20px;
}
.section-head--split {
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(30px, 5vw, 80px);
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 120px);
  line-height: .94;
  letter-spacing: -.035em;
  max-width: 14ch;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.section-head p, .section-lede {
  max-width: 54ch;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--ink-2);
  line-height: 1.55;
}
.section-lede strong { color: var(--ink); }
.section-lede a { color: var(--accent); border-bottom: 1px solid var(--accent); transition: opacity var(--t-fast); }
.section-lede a:hover { opacity: .7; }

@media (max-width: 720px) {
  .section-head--split { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   WORK / REEL (horizontal scroll cards)
───────────────────────────────────────── */
.work { background: var(--bg); position: relative; }
.reel {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter) 40px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.reel::-webkit-scrollbar { height: 6px; }
.reel::-webkit-scrollbar-track { background: transparent; }
.reel::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }

.reel__card {
  flex: 0 0 clamp(320px, 42vw, 620px);
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  min-height: 540px;
  transition: transform var(--t-med) var(--e-out), border-color var(--t-med);
}
.reel__card--wide {
  flex: 0 0 clamp(500px, 70vw, 960px);
}
.reel__card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.reel__media {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}
.reel__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transition: transform var(--t-slow) var(--e-out);
}
.reel__card:hover .reel__media video { transform: scale(1.03); }

.reel__soon {
  width: 100%; height: 100%;
  display: grid; place-items: center; gap: 8px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,146,63,.15), transparent 60%),
    linear-gradient(135deg, var(--bg-2), var(--bg-3));
  padding: 30px;
  text-align: center;
}
.reel__soon-tag {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
}
.reel__soon h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 4vw, 72px);
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.reel__meta {
  padding: 26px 28px 28px;
  display: grid; gap: 10px;
  position: relative;
}
.reel__index {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--ink-3);
}
.reel__kicker {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.reel__meta h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.reel__meta p {
  font-size: 14px;
  color: var(--ink-2);
  max-width: 46ch;
}
.reel__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 8px;
}
.reel__tags span {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ink-2);
}

/* Brand strip */
.brand-strip {
  max-width: var(--maxw);
  margin: 60px auto 0;
  padding: 40px var(--gutter) 90px;
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 20px 36px;
  border-top: 1px solid var(--line);
}
.brand-strip__label {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.brand-strip ul {
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 120, "SOFT" 40;
}
.brand-strip li {
  transition: color var(--t-fast);
  position: relative;
}
.brand-strip li::after {
  content: '·';
  margin-left: 28px;
  color: var(--ink-3);
  opacity: .4;
}
.brand-strip li:last-child::after { content: ''; margin: 0; }
.brand-strip li:hover { color: var(--accent); }
.brand-strip__note {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--ink-3);
  font-style: italic;
}

/* ─────────────────────────────────────────
   PAINTINGS WALL
───────────────────────────────────────── */
.paintings {
  background: var(--c-ink);
  border-top: 1px solid var(--line);
  position: relative;
}
.paintings .section-head h2 em { color: var(--c-cream); }
.paintings__wall {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 110px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
}
.paint {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  transition: transform var(--t-med) var(--e-out);
  cursor: none;
}
.paint:hover { transform: scale(1.015); }
.paint img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--e-out), filter var(--t-med);
  filter: saturate(1.1);
}
.paint:hover img { transform: scale(1.08); filter: saturate(1.25) contrast(1.05); }
.paint figcaption {
  position: absolute; left: 18px; bottom: 16px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 10px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-med), transform var(--t-med) var(--e-out);
}
.paint:hover figcaption { opacity: 1; transform: translateY(0); }

/* Asymmetric grid layout */
.paint:nth-child(1) { grid-column: span 5; grid-row: span 3; }
.paint:nth-child(2) { grid-column: span 4; grid-row: span 2; }
.paint:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.paint:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.paint:nth-child(5) { grid-column: span 4; grid-row: span 3; }
.paint:nth-child(6) { grid-column: span 5; grid-row: span 2; }
.paint:nth-child(7) { grid-column: span 4; grid-row: span 2; }
.paint:nth-child(8) { grid-column: span 3; grid-row: span 2; }

@media (max-width: 900px) {
  .paintings__wall { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 110px; }
  .paint:nth-child(n) { grid-column: span 3; grid-row: span 2; }
  .paint:nth-child(1) { grid-column: span 6; grid-row: span 3; }
}

/* ─────────────────────────────────────────
   LoRA LAB
───────────────────────────────────────── */
.lora { background: var(--bg); border-top: 1px solid var(--line); }
.lora__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lora__card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: border-color var(--t-med), transform var(--t-med) var(--e-out);
}
.lora__card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.lora__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--e-out), filter var(--t-med);
}
.lora__card:hover img { transform: scale(1.04); filter: saturate(1.15); }

.lora__info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(0,0,0,.88), transparent);
  display: grid; gap: 4px;
  transform: translateY(8px);
  opacity: .9;
  transition: transform var(--t-med) var(--e-out), opacity var(--t-med);
}
.lora__card:hover .lora__info { transform: translateY(0); opacity: 1; }
.lora__name {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
}
.lora__sub {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.lora__card--more { background: var(--bg-2); display: grid; place-items: center; text-align: center; }
.lora__card--more a { display: grid; place-items: center; padding: 24px; gap: 14px; height: 100%; width: 100%; color: var(--ink); }
.lora__more {
  display: grid; gap: 10px; justify-items: center;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  font-variation-settings: "opsz" 120;
}
.lora__more strong { color: var(--accent); font-weight: 600; }
.lora__card--more:hover svg { transform: translate(3px, -3px); color: var(--accent); }
.lora__card--more svg { transition: transform var(--t-med) var(--e-spring); }

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

/* ─────────────────────────────────────────
   ABOUT / TIMELINE (horizontal)
───────────────────────────────────────── */
.about { background: var(--bg-2); border-top: 1px solid var(--line); }
.about .section-head h2 { max-width: 18ch; }

.timeline {
  margin: 0 auto 120px;
  position: relative;
}
.timeline__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 0;
  padding: 0 var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.timeline__track::-webkit-scrollbar { height: 6px; }
.timeline__track::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }

.era {
  scroll-snap-align: start;
  padding: 40px 36px;
  border-left: 1px solid var(--line);
  display: grid; gap: 14px;
  align-content: start;
  min-height: 320px;
  position: relative;
  transition: background var(--t-med);
}
.era:first-child { border-left: 0; }
.era:hover { background: rgba(201,146,63,.04); }
.era__year {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 3px;
  color: var(--accent);
  font-weight: 500;
}
.era h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.era p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 32ch;
}
/* Era color stripe */
.era--01 { --era-accent: #6B6659; }
.era--02 { --era-accent: var(--c-terra); }
.era--03 { --era-accent: var(--c-cream); }
.era--04 { --era-accent: var(--c-sage); }
.era--05 { --era-accent: var(--c-ochre); }
.era--06 { --era-accent: var(--accent); }
.era::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--era-accent);
  opacity: .6;
  transform: scaleY(.3);
  transform-origin: top;
  transition: transform var(--t-med) var(--e-out), opacity var(--t-med);
}
.era:hover::before { transform: scaleY(1); opacity: 1; }

/* ─────────────────────────────────────────
   SHOP
───────────────────────────────────────── */
.shop { background: var(--bg); border-top: 1px solid var(--line); }
.shop__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 100px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.prod {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: 1fr auto;
  transition: transform var(--t-med) var(--e-out), border-color var(--t-med);
  min-height: 360px;
}
.prod:hover { transform: translateY(-4px); border-color: var(--accent); }
.prod--lg { grid-column: span 3; grid-row: span 2; min-height: 520px; }
.prod:not(.prod--lg) { grid-column: span 3; }
.prod--dark { background: #0A0A0A; }
.prod--accent { background: linear-gradient(140deg, #1A0F05, var(--bg-3)); border-color: rgba(201,146,63,.3); }

.prod__img {
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform var(--t-slow) var(--e-out);
}
.prod:hover .prod__img { transform: scale(1.04); }
.prod__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.5));
}
.prod__img--pattern {
  background:
    radial-gradient(circle at 20% 20%, rgba(201,146,63,.4), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(178,78,39,.3), transparent 45%),
    linear-gradient(135deg, #2A1608, #1A0F05);
}
.prod__body {
  padding: 22px 24px 26px;
  display: grid; gap: 8px;
  position: relative;
  z-index: 2;
  background: rgba(11,11,11,.6);
  backdrop-filter: blur(6px);
}
.prod__kick {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.prod__kick--featured {
  display: inline-block; padding: 4px 10px;
  background: var(--accent); color: var(--bg);
  border-radius: 999px;
  width: max-content;
}
.prod__body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.1;
}
.prod__body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.prod__cta {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
  transition: color var(--t-fast);
}
.prod:hover .prod__cta { color: var(--accent); }

@media (max-width: 900px) {
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .prod, .prod--lg { grid-column: span 2; grid-row: span 1; min-height: 320px; }
  .prod--lg { min-height: 400px; }
}
@media (max-width: 520px) {
  .shop__grid { grid-template-columns: 1fr; }
  .prod, .prod--lg { grid-column: span 1; }
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 140px 0 100px;
}
.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.contact__line {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 100px);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--ink);
  max-width: 16ch;
  margin: 20px 0 60px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.contact__cell {
  display: grid; gap: 10px;
  padding: 30px 24px;
  border-right: 1px solid var(--line-2);
  transition: background var(--t-fast);
  position: relative;
}
.contact__cell:last-child { border-right: 0; }
.contact__cell:hover { background: rgba(201,146,63,.06); }
.contact__k {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
.contact__v {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  word-break: break-word;
}
.contact__arrow {
  position: absolute; top: 28px; right: 22px;
  font-size: 18px;
  color: var(--ink-3);
  transition: color var(--t-fast), transform var(--t-fast) var(--e-spring);
}
.contact__cell:hover .contact__arrow { color: var(--accent); transform: translate(3px, -3px); }

.contact__credit {
  margin-top: 40px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--ink-3);
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__cell:nth-child(2) { border-right: 0; }
  .contact__cell:nth-child(1), .contact__cell:nth-child(2) { border-bottom: 1px solid var(--line-2); }
}
@media (max-width: 520px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__cell { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .contact__cell:last-child { border-bottom: 0; }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.foot {
  padding: 30px var(--gutter);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
}

/* ═══════════════════════════════════════════
   MULTI-PAGE · SHARED PAGE INTRO
═══════════════════════════════════════════ */
.page-intro {
  padding: 160px var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}
.page-intro__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(30px, 5vw, 90px);
  align-items: start;
}
.page-intro__index {
  display: grid; gap: 18px;
  border-right: 1px solid var(--line);
  padding-right: clamp(24px, 3vw, 60px);
  align-self: stretch;
}
.page-intro__n {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 2px;
  color: var(--ink-3);
}
.page-intro__h {
  grid-column: 2;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 160px);
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--ink);
  max-width: 14ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.page-intro__h em { color: var(--accent); }
.page-intro__lede {
  grid-column: 2;
  max-width: 52ch;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--ink-2);
  line-height: 1.55;
  margin-top: 30px;
}
.page-intro__meta {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.page-intro__meta > div {
  display: grid; gap: 6px;
  padding-right: 30px;
  border-right: 1px solid var(--line-2);
}
.page-intro__meta > div:last-child { border-right: 0; }
.page-intro__meta .k {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.page-intro__meta .v {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.page-intro__meta .v a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

@media (max-width: 720px) {
  .page-intro__grid { grid-template-columns: 1fr; }
  .page-intro__index { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 20px; }
  .page-intro__h, .page-intro__lede, .page-intro__meta { grid-column: 1; }
  .page-intro__meta { grid-template-columns: 1fr; }
  .page-intro__meta > div { border-right: 0; border-bottom: 1px solid var(--line-2); padding: 10px 0; }
  .page-intro__meta > div:last-child { border-bottom: 0; }
}

/* Page-specific palette overrides */
.page--paintings {
  --accent:   var(--c-terra);
  --accent-2: var(--c-cream);
}
.page--films {
  --accent:   var(--c-ochre);
}
.page--lab {
  --accent:   var(--c-sage);
}
.page--shop {
  --accent:   var(--c-cream);
  --accent-2: var(--c-ochre);
}
.page--about {
  --accent:   var(--c-ochre);
}

/* ═══════════════════════════════════════════
   GALLERY (paintings page)
═══════════════════════════════════════════ */
.gallery { padding: 40px 0 120px; }
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  cursor: none;
  transition: transform var(--t-med) var(--e-out);
}
.g-item:hover { transform: scale(1.01); }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--e-out), filter var(--t-med);
  filter: saturate(1.05);
}
.g-item:hover img { transform: scale(1.06); filter: saturate(1.2) contrast(1.05); }
.g-item figcaption {
  position: absolute; left: 18px; bottom: 16px; right: 18px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 7px 12px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  width: max-content;
  max-width: calc(100% - 36px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-med), transform var(--t-med) var(--e-out);
}
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }
.g-item__num { color: var(--accent); }
.g-item__title { color: var(--ink); }

/* Varied grid layout */
.g-item:nth-child(1) { grid-column: span 6; grid-row: span 4; }
.g-item:nth-child(2) { grid-column: span 3; grid-row: span 3; }
.g-item:nth-child(3) { grid-column: span 3; grid-row: span 3; }
.g-item:nth-child(4) { grid-column: span 4; grid-row: span 3; }
.g-item:nth-child(5) { grid-column: span 5; grid-row: span 3; }
.g-item:nth-child(6) { grid-column: span 3; grid-row: span 3; }
.g-item:nth-child(7) { grid-column: span 4; grid-row: span 3; }
.g-item:nth-child(8) { grid-column: span 8; grid-row: span 3; }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 110px; }
  .g-item:nth-child(n) { grid-column: span 3; grid-row: span 3; }
  .g-item:nth-child(1) { grid-column: span 6; grid-row: span 4; }
}

.gallery__outro {
  max-width: var(--maxw);
  margin: 80px auto 0;
  padding: 60px var(--gutter);
  border-top: 1px solid var(--line);
  display: grid; gap: 30px;
}
.gallery__outro-line {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 120, "SOFT" 50;
}
.gallery__outro-line em { color: var(--accent); }
.gallery__outro-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex; align-items: center;
  padding: 14px 20px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ink);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.btn--primary:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(5,5,5,.95);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--e-out), visibility 0s linear var(--t-med);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--t-med) var(--e-out), visibility 0s;
}
.lightbox__stage {
  display: grid;
  place-items: center;
  padding: 60px clamp(30px, 6vw, 100px) 20px;
  overflow: hidden;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
  transform: scale(.96);
  transition: transform var(--t-slow) var(--e-out);
}
.lightbox.is-open .lightbox__stage img { transform: scale(1); }

.lightbox__meta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px 36px;
  display: grid; gap: 6px;
  text-align: center;
}
.lightbox__num {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
.lightbox__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.lightbox__caption {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-2);
}
.lightbox__hint {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 14px;
}

.lightbox__close, .lightbox__arrow {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--ink);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: none;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast) var(--e-spring);
}
.lightbox__close:hover, .lightbox__arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: scale(1.1);
}
.lightbox__close { top: 22px; right: 22px; }
.lightbox__arrow--prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__arrow--next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__arrow--prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox__arrow--next:hover { transform: translateY(-50%) scale(1.1); }

@media (max-width: 720px) {
  .lightbox__close, .lightbox__arrow { width: 40px; height: 40px; }
  .lightbox__stage { padding: 60px 16px 10px; }
  .lightbox__stage img { max-height: 60vh; }
}

/* ═══════════════════════════════════════════
   CHAPTERS (index page)
═══════════════════════════════════════════ */
.chapters {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px var(--gutter) 140px;
}
.chapters__head {
  display: grid; gap: 18px;
  margin-bottom: 60px;
  max-width: 800px;
}
.chapters__h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 160px);
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.chapters__h em { color: var(--accent); }
.chapters__lede {
  max-width: 54ch;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--ink-2);
}

.chapters__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.chapter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 80px);
  padding: clamp(30px, 4vw, 50px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding var(--t-med) var(--e-out), background var(--t-med);
  position: relative;
  overflow: hidden;
}
.chapter::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent);
  opacity: .08;
  transition: width var(--t-slow) var(--e-out);
  z-index: 0;
}
.chapter:hover::before { width: 100%; }
.chapter:hover {
  padding-left: clamp(20px, 3vw, 50px);
}
.chapter > * { position: relative; z-index: 1; }
.chapter__n {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(60px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  width: 130px;
  font-style: italic;
  transition: transform var(--t-med) var(--e-out);
}
.chapter:hover .chapter__n { transform: translateX(-6px); font-variation-settings: "opsz" 144, "SOFT" 60; }
.chapter__body { display: grid; gap: 8px; max-width: 64ch; }
.chapter__kicker {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.chapter__body h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 54px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  transition: color var(--t-med);
}
.chapter:hover .chapter__body h3 { color: var(--accent); }
.chapter__body p {
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--ink-2);
  max-width: 60ch;
}
.chapter__arrow {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--ink-3);
  transition: transform var(--t-med) var(--e-spring), color var(--t-med);
}
.chapter:hover .chapter__arrow {
  color: var(--accent);
  transform: translate(8px, -8px);
}

/* Chapter-specific accent flipping */
.chapter--01:hover { --accent: var(--c-ochre); }
.chapter--02:hover { --accent: var(--c-terra); }
.chapter--03:hover { --accent: var(--c-sage); }
.chapter--04:hover { --accent: var(--c-cream); }
.chapter--05:hover { --accent: var(--c-ochre); }

@media (max-width: 720px) {
  .chapter { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .chapter__n { font-size: 52px; width: auto; }
  .chapter__arrow { align-self: end; }
}

/* ═══════════════════════════════════════════
   FILMS PAGE — film case cards
═══════════════════════════════════════════ */
.films-stack {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
  display: grid; gap: 28px;
}
.film-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 50px);
  padding: 30px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.film-case:first-child { border-top: 0; }
.film-case--r {
  direction: rtl; /* flip layout */
}
.film-case--r > * { direction: ltr; }
.film-case--hero {
  grid-template-columns: 1fr;
}
.film-case__media {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.film-case__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transition: transform var(--t-slow) var(--e-out);
}
.film-case:hover .film-case__media video { transform: scale(1.03); }
.film-case__body { display: grid; gap: 16px; padding: 0 20px; }
.film-case__idx {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.film-case__body h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 76px);
  line-height: .95;
  letter-spacing: -.035em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.film-case__body h2 em { color: var(--accent); }
.film-case__lede {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-2);
  max-width: 46ch;
}
.film-case__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.film-case__meta > div { display: grid; gap: 4px; }
.film-case__meta .k {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.film-case__meta .v {
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .film-case { grid-template-columns: 1fr; }
  .film-case--r { direction: ltr; }
  .film-case__body { padding: 0; }
}

.brand-page {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px 0 80px;
}
.brand-strip--standalone {
  max-width: var(--maxw);
  margin: 20px auto 0;
  border-top: 0;
  padding-top: 0;
}

/* ─────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; }
  .hero__title [data-split] { transform: none; opacity: 1; }
}
