/* ============================================================
   maquesh cc — v2 · dirección A "cine"
   scroll cinematográfico · capítulos · sala de proyección
   paleta: negro dominante (modo inverso) · papel · naranja
   ============================================================ */

:root {
  --o: #FF460E;
  --o-dark: #D8390A;
  --k: #000000;
  --p: #F4F4F4;
  --line-d: rgba(244, 244, 244, 0.18);
  --line-l: rgba(0, 0, 0, 0.18);
  --mut-d: rgba(244, 244, 244, 0.55);
  --mut-l: rgba(0, 0, 0, 0.55);
  --mono: 'GT Pressura Mono', ui-monospace, Menlo, monospace;
  --sans: 'Px Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --pad: clamp(20px, 4vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--k);
  color: var(--p);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}
::selection { background: var(--o); color: var(--p); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
b { font-weight: 700; }
em { font-style: italic; }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- HUD fijo (mix-blend para sobrevivir negro/papel/naranja) ---------- */
.hud { position: fixed; inset: 0; pointer-events: none; z-index: 100; mix-blend-mode: difference; color: #fff; }
.hud > * { position: absolute; pointer-events: auto; }
.hud__mark { top: 22px; left: var(--pad); width: 116px; }
.hud__mark img { width: 100%; }
.hud__nav { top: 26px; right: var(--pad); display: flex; gap: 22px; }
.hud__nav a { position: relative; padding-bottom: 2px; }
.hud__nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: currentColor; transition: width 0.24s var(--ease); }
@media (hover: hover) { .hud__nav a:hover::after { width: 100%; } }
.hud__ch { bottom: 24px; left: var(--pad); display: flex; gap: 14px; align-items: baseline; }
.hud__ch .n { font-size: 13px; }
.hud__pct { bottom: 24px; right: var(--pad); font-variant-numeric: tabular-nums; }

/* progreso — línea sobre el borde inferior del hud */
.hud__bar { bottom: 0; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.14); }
.hud__bar i { display: block; height: 100%; width: 0; background: #fff; transition: width 60ms linear; }

/* ---------- switcher de versión ---------- */
.vswitch {
  position: fixed; bottom: 56px; right: var(--pad); z-index: 110;
  display: flex; gap: 2px; border: 1px solid var(--line-d); background: rgba(0,0,0,0.72); backdrop-filter: blur(4px);
}
.vswitch a { padding: 7px 12px; color: var(--mut-d); transition: color 0.2s var(--ease), background 0.2s var(--ease); }
@media (hover: hover) { .vswitch a:hover { color: var(--p); } }
.vswitch a.on { background: var(--o); color: var(--p); }

/* ---------- capítulos base ---------- */
.ch { position: relative; }
.ch--paper { background: var(--p); color: var(--k); }
.ch--orange { background: var(--o); color: var(--p); }

/* ---------- 00 apertura ---------- */
.open { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: var(--pad); position: relative; }
.open__meta { position: absolute; top: 84px; left: var(--pad); color: var(--mut-d); }
.open__meta2 { position: absolute; top: 84px; right: var(--pad); color: var(--mut-d); text-align: right; }
.open h1 {
  font-weight: 300;
  font-size: clamp(46px, 9.2vw, 152px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 12ch;
}
.open h1 .ln { display: block; overflow: hidden; }
.open h1 .ln > span { display: block; transform: translateY(110%); animation: lift 1s var(--ease) forwards; }
.open h1 .ln:nth-child(2) > span { animation-delay: 0.12s; }
.open h1 .ln:nth-child(3) > span { animation-delay: 0.24s; }
.open h1 em { color: var(--o); font-style: italic; }
@keyframes lift { to { transform: translateY(0); } }
.open__lede { margin-top: 40px; max-width: 44ch; font-size: clamp(15px, 1.4vw, 19px); line-height: 1.55; color: var(--mut-d); opacity: 0; animation: fadein 0.9s var(--ease) 0.7s forwards; }
.open__lede em { color: var(--p); }
@keyframes fadein { to { opacity: 1; } }
.open__cue { position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%); color: var(--mut-d); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadein 0.9s var(--ease) 1.2s forwards; }
.open__cue i { width: 1px; height: 44px; background: var(--line-d); position: relative; overflow: hidden; display: block; }
.open__cue i::after { content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: var(--o); animation: drip 1.8s var(--ease) infinite; }
@keyframes drip { to { top: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .open h1 .ln > span { animation: none; transform: none; }
  .open__lede, .open__cue { animation: none; opacity: 1; }
  .open__cue i::after { animation: none; }
}

/* ---------- 01 reel (escala al hacer scroll) ---------- */
.reelch { height: 180vh; }
.reelch__sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.reelframe {
  position: relative; width: min(46vw, 82vh * 1.7778); aspect-ratio: 16 / 9;
  border: 1px solid var(--line-d); cursor: pointer; overflow: hidden;
  transform-origin: center center; will-change: transform;
  background: #0a0a0a;
}
.reelframe image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.reelframe__veil { position: absolute; inset: 0; background: rgba(0,0,0,0.34); transition: background 0.3s var(--ease); }
@media (hover: hover) { .reelframe:hover .reelframe__veil { background: rgba(0,0,0,0.14); } }
.reelframe__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px; border: 1px solid var(--p); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--p); cursor: pointer; transition: background 0.24s var(--ease), transform 0.24s var(--ease);
}
.reelframe__play svg { width: 26px; height: 26px; margin-left: 4px; }
@media (hover: hover) { .reelframe:hover .reelframe__play { background: var(--o); border-color: var(--o); transform: translate(-50%, -50%) scale(1.06); } }
.reelframe__tag { position: absolute; top: 18px; left: 20px; color: var(--p); }
.reelframe__meta { position: absolute; bottom: 18px; left: 20px; right: 20px; display: flex; justify-content: space-between; color: var(--p); }
.reelch__cap { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); color: var(--mut-d); white-space: nowrap; }

/* ---------- 02 manifiesto (relleno palabra por palabra) ---------- */
.mani { min-height: 190vh; }
.mani__sticky { position: sticky; top: 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: var(--pad); }
.mani .lbl { color: var(--o); margin-bottom: 34px; }
.mani p { font-size: clamp(34px, 5.6vw, 92px); line-height: 1.12; letter-spacing: -0.015em; max-width: 18ch; font-weight: 300; }
.mani .w { opacity: 0.13; transition: opacity 0.25s linear; }
.mani .w.on { opacity: 1; }
.mani .w em { font-style: italic; }
.mani .w.acc.on { color: var(--o); }

/* ---------- 03 work (galería horizontal) ---------- */
.hwork { position: relative; }
.hwork__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.hwork__head { position: absolute; top: 92px; left: var(--pad); right: var(--pad); display: flex; justify-content: space-between; align-items: baseline; }
.hwork__head h2 { font-size: clamp(26px, 3vw, 44px); font-weight: 300; }
.hwork__head .mono { color: var(--mut-d); }
.htrack { display: flex; gap: clamp(24px, 3vw, 56px); padding: 0 var(--pad); will-change: transform; width: max-content; align-items: center; }
.hcard { width: clamp(300px, 34vw, 560px); flex: none; cursor: pointer; }
.hcard__media { position: relative; aspect-ratio: 16 / 10; border: 1px solid var(--line-d); overflow: hidden; background: #0a0a0a; }
.hcard__media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.hcard__n {
  position: absolute; right: 14px; bottom: 6px; font-weight: 300; z-index: 2;
  font-size: clamp(64px, 7vw, 118px); line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(244,244,244,0.6); pointer-events: none;
}
.hcard__play { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--p); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.24s var(--ease), background 0.24s var(--ease); z-index: 2; }
.hcard__play svg { width: 14px; height: 14px; margin-left: 2px; }
@media (hover: hover) { .hcard:hover .hcard__play { opacity: 1; } }
@media (hover: hover) { .hcard__play:hover { background: var(--o); border-color: var(--o); } }
.hcard__body { border-top: 1px solid var(--line-d); margin-top: 0; padding-top: 14px; display: grid; gap: 8px; }
.hcard__top { display: flex; justify-content: space-between; color: var(--mut-d); }
.hcard__ti { font-size: clamp(20px, 2vw, 30px); font-weight: 300; }
.hcard__de { font-size: 14px; line-height: 1.5; color: var(--mut-d); max-width: 42ch; }
.hwork__more { position: absolute; bottom: 60px; right: var(--pad); }

/* ---------- 04 services (paneles apilados) ---------- */
.svcs { position: relative; }
.svc {
  position: sticky; top: 0; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--pad); align-items: center;
  padding: var(--pad); border-top: 1px solid var(--line-l);
  background: var(--p); color: var(--k);
}
.svc:nth-child(even) { background: var(--k); color: var(--p); border-top-color: var(--line-d); }
.svc__n { font-size: clamp(120px, 20vw, 340px); font-weight: 300; line-height: 0.9; color: transparent; -webkit-text-stroke: 1.5px currentColor; opacity: 0.9; }
.svc:nth-child(even) .svc__n { -webkit-text-stroke-color: var(--o); }
.svc__body h3 { font-size: clamp(34px, 4.4vw, 74px); font-weight: 300; margin-bottom: 22px; }
.svc__body p { font-size: clamp(15px, 1.4vw, 19px); line-height: 1.55; max-width: 52ch; color: var(--mut-l); }
.svc:nth-child(even) .svc__body p { color: var(--mut-d); }
.svc__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.svc__tags span { border: 1px solid currentColor; padding: 6px 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }
.svcs__head { padding: 110px var(--pad) 60px; display: flex; justify-content: space-between; align-items: baseline; }
.svcs__head h2 { font-size: clamp(26px, 3vw, 44px); font-weight: 300; }
.svcs__head .mono { color: var(--mut-d); }

/* ---------- 05 rental (capítulo naranja) ---------- */
.rentch { padding: calc(var(--pad) * 2.4) var(--pad); display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--pad); align-items: end; }
.rentch .lbl { color: var(--p); opacity: 0.75; margin-bottom: 30px; display: block; }
.rentch h2 { font-size: clamp(44px, 7vw, 120px); font-weight: 300; line-height: 1.02; letter-spacing: -0.02em; }
.rentch p { margin-top: 28px; max-width: 46ch; font-size: clamp(15px, 1.4vw, 19px); line-height: 1.55; opacity: 0.85; }
.rentch__cats { border-top: 1px solid rgba(244,244,244,0.4); }
.rentch__cats li { list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(244,244,244,0.4); font-size: clamp(17px, 1.6vw, 24px); }
.rentch__cats li .c { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; text-align: right; }
.btn-cine {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 38px;
  border: 1px solid var(--p); padding: 16px 26px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.24s var(--ease), color 0.24s var(--ease);
}
@media (hover: hover) { .btn-cine:hover { background: var(--p); color: var(--o); } }
.btn-cine .arr { transition: transform 0.24s var(--ease); }
@media (hover: hover) { .btn-cine:hover .arr { transform: translateX(5px); } }

/* ---------- 06 process ---------- */
.proc { padding: calc(var(--pad) * 2) var(--pad); }
.proc__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 70px; }
.proc__head h2 { font-size: clamp(26px, 3vw, 44px); font-weight: 300; }
.proc__head .mono { color: var(--mut-d); }
.pstep { display: grid; grid-template-columns: 200px 1fr 1.4fr; gap: var(--pad); align-items: baseline; padding: 44px 0; border-top: 1px solid var(--line-d); }
.pstep:last-child { border-bottom: 1px solid var(--line-d); }
.pstep .idx { color: var(--o); }
.pstep h3 { font-size: clamp(28px, 3.4vw, 56px); font-weight: 300; }
.pstep p { font-size: clamp(15px, 1.3vw, 18px); line-height: 1.55; color: var(--mut-d); max-width: 56ch; }

/* ---------- 07 studio ---------- */
.stud { background: var(--p); color: var(--k); padding: calc(var(--pad) * 2.4) var(--pad); position: relative; overflow: hidden; }
.stud__art { position: absolute; right: -6%; top: -10%; width: 46vw; opacity: 0.9; pointer-events: none; }
.stud .lbl { color: var(--o); display: block; margin-bottom: 30px; }
.stud h2 { font-size: clamp(40px, 6vw, 104px); font-weight: 300; line-height: 1.04; letter-spacing: -0.02em; max-width: 12ch; position: relative; }
.stud__cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad); margin-top: 60px; position: relative; }
.stud__cols p { font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6; color: var(--mut-l); max-width: 52ch; }
.stud__cols p + p { margin-top: 18px; }
.stats { display: flex; gap: clamp(30px, 5vw, 90px); margin-top: 60px; border-top: 1px solid var(--line-l); padding-top: 34px; position: relative; }
.stat .num { font-size: clamp(52px, 6vw, 100px); font-weight: 300; line-height: 1; }
.stat .num i { font-style: normal; color: var(--o); }
.stat .cap { margin-top: 10px; color: var(--mut-l); }
.pillars { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; position: relative; }
.pillars span { border: 1px solid var(--line-l); padding: 7px 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- 08 contact ---------- */
.cont { padding: calc(var(--pad) * 2.6) var(--pad); display: grid; grid-template-columns: 1.2fr 1fr; gap: calc(var(--pad) * 1.5); }
.cont .lbl { color: var(--o); display: block; margin-bottom: 30px; }
.cont h2 { font-size: clamp(40px, 6.4vw, 110px); font-weight: 300; line-height: 1.03; letter-spacing: -0.02em; }
.cont h2 b { color: var(--o); font-weight: 300; font-style: italic; }
.cont__pitch p { margin-top: 30px; max-width: 44ch; font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6; color: var(--mut-d); }
.cont__pitch .mail { color: var(--p); border-bottom: 1px solid var(--o); }
.channels { margin-top: 44px; border-top: 1px solid var(--line-d); }
.channels a { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line-d); transition: padding 0.24s var(--ease), color 0.24s var(--ease); }
@media (hover: hover) { .channels a:hover { color: var(--o); padding-left: 10px; } }
.channels a span:last-child { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
form .field { margin-bottom: 26px; }
form label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mut-d); margin-bottom: 10px; }
form input, form textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-d);
  color: var(--p); font-family: var(--sans); font-weight: 300; font-size: 17px; padding: 10px 0; outline: none;
  transition: border-color 0.24s var(--ease);
}
form input:focus, form textarea:focus { border-color: var(--o); }
form textarea { resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line-d); padding: 8px 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.2s var(--ease); }
.chip.on { border-color: var(--o); color: var(--o); }
@media (hover: hover) { .chip:hover { border-color: var(--o); color: var(--o); } }
.btn-send { display: inline-flex; align-items: center; gap: 12px; background: var(--o); color: var(--p); border: 0; padding: 17px 28px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.24s var(--ease); }
@media (hover: hover) { .btn-send:hover { background: var(--o-dark); } }
.form-ok { color: var(--o); opacity: 0; transition: opacity 0.3s var(--ease); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; }
.form-ok.show { opacity: 1; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line-d); padding: 26px var(--pad) 60px; display: flex; justify-content: space-between; gap: 20px; color: var(--mut-d); flex-wrap: wrap; }

/* ---------- reveal genérico ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__frame { position: relative; width: min(1200px, 92vw); aspect-ratio: 16 / 9; background: #000; border: 1px solid var(--line-d); }
.lightbox__player { position: absolute; inset: 0; }
.lightbox__player iframe { width: 100%; height: 100%; border: 0; display: block; }
.lightbox__close { position: absolute; top: -40px; right: 0; background: none; border: 0; color: var(--p); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; }
.lightbox__yt { position: absolute; bottom: -34px; right: 0; color: var(--p); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; opacity: 0.7; }
@media (hover: hover) { .lightbox__yt:hover { opacity: 1; text-decoration: underline; } }

/* ---------- renta (dirección A) ---------- */
.rhero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--pad); padding-top: calc(90px + var(--pad)); padding-bottom: calc(var(--pad) * 1.4); }
.rhero h1 { font-size: clamp(52px, 10vw, 170px); font-weight: 300; line-height: 0.98; letter-spacing: -0.02em; }
.rhero h1 b { color: var(--o); font-weight: 300; }
.rhero .sub { margin-top: 30px; max-width: 52ch; font-size: clamp(15px, 1.4vw, 19px); line-height: 1.55; color: var(--mut-d); }
.rhero__row { display: flex; gap: 18px; align-items: center; margin-top: 8px; flex-wrap: wrap; }

.filterbar { position: sticky; top: 0; z-index: 90; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; padding: 14px var(--pad); background: rgba(0,0,0,0.86); backdrop-filter: blur(6px); border-top: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d); }
.filterbar .fl { color: var(--mut-d); margin-right: 10px; }
.filter { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 12px; cursor: pointer; color: var(--mut-d); border: 1px solid transparent; transition: all 0.2s var(--ease); }
@media (hover: hover) { .filter:hover { color: var(--p); } }
.filter.on { border-color: var(--o); color: var(--o); }
.cat-search { display: flex; align-items: center; gap: 8px; margin-left: auto; border-bottom: 1px solid var(--line-d); padding: 4px 2px; }
.cat-search svg { width: 14px; height: 14px; color: var(--mut-d); }
.cat-search input { background: none; border: 0; outline: none; color: var(--p); font-family: var(--mono); font-size: 12px; width: 150px; }
.filterbar .count { color: var(--mut-d); margin-left: 16px; }
.filterbar .count b { color: var(--o); }

.rent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: var(--line-d); border-bottom: 1px solid var(--line-d); }
.cat-card { background: var(--k); padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: background 0.2s var(--ease); }
@media (hover: hover) { .cat-card:hover { background: #0d0d0d; } }
.cat-card.sel { box-shadow: inset 0 0 0 1px var(--o); }
.cc-top { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mut-d); }
.cat-card h3 { font-size: 21px; font-weight: 300; }
.cat-card p { font-size: 13.5px; line-height: 1.5; color: var(--mut-d); flex: 1; }
.cc-add { align-self: flex-start; background: none; border: 1px solid var(--line-d); color: var(--p); font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 14px; cursor: pointer; transition: all 0.2s var(--ease); }
@media (hover: hover) { .cc-add:hover { border-color: var(--o); color: var(--o); } }
.cat-card.sel .cc-add { background: var(--o); border-color: var(--o); color: var(--p); }
.rent-empty { padding: 80px var(--pad); color: var(--mut-d); font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; }

/* barra de lista flotante */
.listbar {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 140%); z-index: 120;
  display: flex; align-items: center; gap: 22px; padding: 14px 22px;
  background: var(--p); color: var(--k); border: 1px solid var(--k);
  transition: transform 0.35s var(--ease);
}
.listbar.show { transform: translate(-50%, 0); }
.listbar .lb-n { color: var(--o); font-weight: 700; }
.lb-send { background: var(--o); color: var(--p); padding: 10px 18px; }
@media (hover: hover) { .lb-send:hover { background: var(--o-dark); } }
.lb-clear { cursor: pointer; color: var(--mut-l); background: none; border: 0; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
@media (hover: hover) { .lb-clear:hover { color: var(--k); } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .reelch, .mani { height: auto; min-height: 0; }
  .reelch__sticky { position: static; height: auto; padding: 90px 0; }
  .reelframe { width: 92vw; transform: none !important; }
  .mani__sticky { position: static; min-height: 0; padding: 100px var(--pad); }
  .mani .w { opacity: 1; }
  .hwork { height: auto !important; }
  .hwork__sticky { position: static; height: auto; overflow-x: auto; padding: 110px 0 60px; }
  .hwork__head { position: static; padding: 0 var(--pad); margin-bottom: 30px; }
  .htrack { transform: none !important; }
  .hwork__more { position: static; display: inline-block; margin: 30px var(--pad) 60px; }
  .svc { position: static; grid-template-columns: 1fr; min-height: 0; padding: 60px var(--pad); gap: 26px; }
  .svc__n { font-size: 90px; }
  .rentch, .cont, .stud__cols { grid-template-columns: 1fr; }
  .pstep { grid-template-columns: 1fr; gap: 12px; padding: 34px 0; }
  .hud__nav { display: none; }
  .stud__art { width: 80vw; opacity: 0.35; }
  .vswitch { bottom: 70px; }
}
