/* ==========================================================================
   BOB TOSH — sistema visual
   Grilla brutalista. Negro, blanco y el lima del isotipo. Nada redondeado.
   ========================================================================== */

/* --- Tipografías locales (sin CDN, sin dependencias externas) -------------- */
@font-face {
  font-family: 'Anton';
  src: url('assets/fonts/anton-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Archivo Narrow';
  src: url('assets/fonts/archivonarrow-var.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('assets/fonts/plexmono-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('assets/fonts/plexmono-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* --- Variables ------------------------------------------------------------ */
:root {
  --ink: #000100;          /* negro de marca */
  --paper: #ffffff;
  --acid: #cfde43;         /* lima del isotipo — protagonista, no detalle */
  --acid-dim: #a9b62f;
  --smoke: #8e9196;
  --line: rgba(255, 255, 255, .26);
  --line-hard: rgba(255, 255, 255, .55);
  --line-ink: rgba(0, 1, 0, .28);

  --display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --body: 'Archivo Narrow', 'Arial Narrow', Arial, sans-serif;
  --mono: 'Plex Mono', ui-monospace, 'Courier New', monospace;

  --gut: clamp(14px, 3vw, 40px);
  --head-h: 64px;
  --tick-h: 40px;
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { border-radius: 0 !important; }           /* regla de la casa: sin curvas */

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head-h) + var(--tick-h));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.45;
  overflow-x: hidden;
  text-transform: uppercase;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--acid); color: var(--ink); }

:focus-visible { outline: 3px solid var(--acid); outline-offset: 2px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--acid); color: var(--ink); padding: 12px 18px;
  font-family: var(--mono); font-weight: 600;
}
.skip:focus { left: 0; }

/* --- Utilidades tipográficas -------------------------------------------- */
.mono {
  font-family: var(--mono);
  font-size: clamp(10px, 1.05vw, 12px);
  letter-spacing: .16em;
  line-height: 1.3;
}
.label { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--smoke); }
.acid { color: var(--acid); }

.h-xl, .h-lg, .h-md {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: .84;
}
.h-xl { font-size: clamp(2.9rem, 11vw, 10rem); }
.h-lg { font-size: clamp(2.2rem, 6.6vw, 5.6rem); }
.h-md { font-size: clamp(1.5rem, 3.2vw, 2.6rem); line-height: .92; }

.lede {
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.5;
  text-transform: none;
  max-width: 62ch;
  color: #d8dad8;
}
.lede strong { color: var(--paper); font-weight: 700; }
/* En los paneles invertidos (blanco y lima) el destacado tiene que ir en negro:
   heredar el blanco lo dejaba literalmente invisible. */
.sec--paper .lede strong,
.sec--acid .lede strong { color: var(--ink); }

.wrap { padding-inline: var(--gut); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ==========================================================================
   HEADER + TICKER
   ========================================================================== */
.site-head {
  position: sticky; top: 0; z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--gut);
  height: var(--head-h);
  padding-inline: var(--gut);
  background: var(--ink);
  border-bottom: 1px solid var(--line-hard);
}

.brand { display: flex; align-items: center; }
.brand img { height: 26px; width: auto; }

.nav { display: flex; gap: clamp(10px, 1.8vw, 28px); justify-content: center; }
.nav a {
  font-family: var(--mono); font-weight: 600;
  font-size: clamp(10px, 1vw, 12px); letter-spacing: .18em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .12s steps(2), border-color .12s steps(2);
}
.nav a:hover { color: var(--acid); border-bottom-color: var(--acid); }
.nav a[aria-current="page"] { color: var(--acid); border-bottom-color: var(--acid); }

.head-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--smoke);
  white-space: nowrap;
}
.head-meta b { color: var(--acid); font-weight: 600; }

.nav-toggle {
  display: none;
  font-family: var(--mono); font-weight: 600; font-size: 12px; letter-spacing: .2em;
  border: 1px solid var(--line-hard); padding: 8px 12px;
}
.nav-toggle:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); }

/* --- Ticker de texto: cartel de neón corriendo --------------------------- */
.ticker {
  position: relative; z-index: 80;
  height: var(--tick-h);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ticker--ink { background: var(--ink); color: var(--acid); border-top: 1px solid var(--line-hard); border-bottom: 1px solid var(--line-hard); }
.ticker__track {
  display: flex; flex: none; align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-run 26s linear infinite;
}
.ticker__track > span {
  font-family: var(--display);
  font-size: clamp(15px, 1.9vw, 22px);
  letter-spacing: .02em;
  padding-right: .5em;
}
.ticker__track > span i { font-style: normal; opacity: .45; padding-inline: .25em; }
@keyframes ticker-run { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* ==========================================================================
   HERO — tipografía gigante reactiva al mouse
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--head-h) - var(--tick-h));
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line-hard);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  filter: grayscale(.35) contrast(1.12) brightness(.62);
  will-change: transform;
}
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,1,0,.72) 0%, rgba(0,1,0,.22) 38%, rgba(0,1,0,.88) 100%);
}
/* grilla visible encima de la foto */
.hero__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  display: grid; grid-template-columns: repeat(6, 1fr);
}
.hero__grid span { border-left: 1px solid rgba(255,255,255,.09); }
.hero__grid span:first-child { border-left: 0; }

.hero__inner {
  position: relative; z-index: 2;
  align-self: center;
  padding: clamp(20px, 5vh, 60px) var(--gut);
  width: 100%;
}

.hero-type { display: block; margin: 0; }
.hero-line {
  position: relative;
  display: block;
  font-family: var(--display);
  font-size: clamp(4rem, 25.5vw, 24rem);
  line-height: .78;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--paper);
  /* --gx/--gy: desplazamiento que empuja el mouse; --gi: intensidad 0-1 */
  --gx: 0; --gy: 0; --gi: 0;
}
.hero-line:nth-child(2) { padding-left: clamp(0px, 8vw, 170px); }
.hero-line::before,
.hero-line::after {
  content: attr(data-word);
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: calc(var(--gi) * .95);
}
/* Los fantasmas se pintan con blend screen: sobre la letra blanca no cambian
   nada, y sobre el fondo negro asoman en los bordes. De ahí sale el desdoble
   de canales sin sumar un color nuevo a la paleta. */
.hero-line::before {
  color: var(--acid);
  transform: translate3d(calc(var(--gx) * -1px), calc(var(--gy) * -1px), 0);
  mix-blend-mode: screen;
}
.hero-line::after {
  color: rgba(255, 255, 255, .5);   /* fantasma neutro del canal opuesto */
  transform: translate3d(calc(var(--gx) * 1px), calc(var(--gy) * 1px), 0);
  mix-blend-mode: screen;
}
/* corte horizontal tipo señal perdida cuando el cursor está muy cerca */
.hero-line.is-tearing { animation: tear .34s steps(3) 1; }
@keyframes tear {
  0%   { clip-path: inset(0 0 0 0); transform: translate3d(0,0,0); }
  30%  { clip-path: inset(34% 0 44% 0); transform: translate3d(10px,0,0); }
  55%  { clip-path: inset(12% 0 70% 0); transform: translate3d(-14px,0,0); }
  80%  { clip-path: inset(62% 0 8% 0);  transform: translate3d(6px,0,0); }
  100% { clip-path: inset(0 0 0 0); transform: translate3d(0,0,0); }
}

.hero__meta {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 6px clamp(14px, 3vw, 40px);
  justify-content: space-between; align-items: end;
  padding: 16px var(--gut) 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(0,1,0,.6));
}
.hero__meta .mono { color: #c9ccc8; }
.hero__scroll { display: flex; align-items: center; gap: 8px; color: var(--acid); }
.hero__scroll b { font-family: var(--mono); font-weight: 600; letter-spacing: .18em; font-size: 11px; }
.hero__scroll span { display: block; width: 34px; height: 1px; background: var(--acid); animation: cue 1.5s steps(4) infinite; transform-origin: left; }
@keyframes cue { 0%,100% { transform: scaleX(.3); } 50% { transform: scaleX(1); } }

/* ==========================================================================
   BOTONES — hover de alto contraste, siempre invierten
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 20px;
  border: 2px solid var(--paper);
  background: transparent; color: var(--paper);
  font-family: var(--mono); font-weight: 600; font-size: 12px; letter-spacing: .2em;
  transition: background .1s steps(2), color .1s steps(2), border-color .1s steps(2);
}
.btn::after { content: '↗'; font-size: 14px; }
.btn:hover { background: var(--paper); color: var(--ink); }
.btn--acid { border-color: var(--acid); color: var(--acid); }
.btn--acid:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.btn--solid { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.btn--solid:hover { background: var(--ink); color: var(--acid); }
.btn--block { display: flex; width: 100%; }
.btn--mail::after { content: '→'; }

/* ==========================================================================
   SECCIONES / GRILLA
   ========================================================================== */
.sec { padding: clamp(48px, 8vw, 110px) 0; border-bottom: 1px solid var(--line-hard); }
.sec--tight { padding: clamp(30px, 4vw, 54px) 0; }
.sec--flat { border-bottom: 0; }
.sec--paper { background: var(--paper); color: var(--ink); }
.sec--paper .label { color: #4b4d4b; }
.sec--paper .lede { color: #26282a; }
.sec--paper .rule { background: var(--line-ink); }
.sec--acid { background: var(--acid); color: var(--ink); }
.sec--acid .label { color: #1c1e1c; }
.sec--acid .lede { color: #131513; }
/* Botones sobre panel claro: el borde y el texto blancos desaparecían. */
.sec--paper .btn, .sec--acid .btn { border-color: var(--ink); color: var(--ink); }
.sec--paper .btn:hover { background: var(--ink); color: var(--acid); }
.sec--acid .btn:hover { background: var(--ink); color: var(--acid); }

.sec__head {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 18px;
  padding-inline: var(--gut);
  margin-bottom: clamp(22px, 3.5vw, 46px);
}
.sec__head .h-lg { grid-column: 1; }
.sec__num {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  color: var(--acid); align-self: start;
}
.sec--paper .sec__num { color: var(--ink); }
.sec__kicker {
  display: flex; align-items: center; gap: 12px;
  padding-inline: var(--gut); margin-bottom: 14px;
}
.sec__kicker span { flex: 1; height: 1px; background: var(--line); }
.sec--paper .sec__kicker span { background: var(--line-ink); }

/* grilla partida a propósito: bloques de distinto ancho y alto */
.grid {
  display: grid; gap: 1px;
  grid-template-columns: repeat(12, 1fr);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec--paper .grid { background: var(--line-ink); border-color: var(--line-ink); }
.cell { background: var(--ink); padding: clamp(18px, 2.4vw, 34px); }
.sec--paper .cell { background: var(--paper); }
.cell--img { padding: 0; overflow: hidden; }
.cell--img img { width: 100%; height: 100%; object-fit: cover; }
.c3 { grid-column: span 3; } .c4 { grid-column: span 4; }
.c5 { grid-column: span 5; } .c6 { grid-column: span 6; }
.c7 { grid-column: span 7; } .c8 { grid-column: span 8; }
.c9 { grid-column: span 9; } .c12 { grid-column: span 12; }
.cell--offset { grid-column-start: 2; }

/* ==========================================================================
   REVELADO SNAP — entradas bruscas, escalonadas, nada suave
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .28s steps(4, end), transform .28s steps(4, end), clip-path .34s steps(5, end);
  clip-path: inset(0 100% 0 0);
}
.reveal.is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
/* Red de seguridad: si el JS no corre o queda cacheado viejo, el texto se ve igual. */
.no-js .reveal, .reveal[data-split] { opacity: 1; transform: none; clip-path: none; }
.reveal[data-split].is-in { clip-path: none; }

/* ==========================================================================
   TARJETAS APILADAS (stacking) — scroll que apila en vez de deslizar
   ========================================================================== */
.stack { position: relative; }
.stack__card {
  position: sticky; top: calc(var(--head-h) + var(--tick-h));
  min-height: calc(100svh - var(--head-h) - var(--tick-h));
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
  background: var(--ink);
  border-top: 1px solid var(--line-hard);
  overflow: hidden;
  will-change: transform;
}
.stack__body {
  grid-column: span 7;
  padding: clamp(24px, 4vw, 64px) var(--gut);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
  border-right: 1px solid var(--line);
}
.stack__media { grid-column: span 5; position: relative; overflow: hidden; }
.stack__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.28) contrast(1.06) brightness(.95); }
.stack__idx {
  font-family: var(--display); font-size: clamp(3rem, 9vw, 8rem); line-height: .8;
  color: transparent; -webkit-text-stroke: 1.5px var(--acid); text-stroke: 1.5px var(--acid);
}
.stack__card:nth-child(even) .stack__body { order: 2; border-right: 0; border-left: 1px solid var(--line); }
.stack__card:nth-child(even) .stack__media { order: 1; }

/* ==========================================================================
   CINTA CREATIV — marquee de fotos, nunca se detiene
   ========================================================================== */
.reel {
  position: relative;
  padding: clamp(26px, 4vw, 48px) 0;
  overflow: hidden;
  background: var(--ink);
  border-block: 1px solid var(--line-hard);
}
.reel__track {
  display: flex; flex: none; align-items: flex-start;
  gap: 18px; padding-left: 18px;
  width: max-content;
  will-change: transform;
  animation: reel-run 86s linear infinite;
}
@keyframes reel-run { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%, 0, 0); } }

.reel__item {
  position: relative; flex: none;
  width: clamp(190px, 20vw, 268px);
  margin: 0;
  /* recorte de póster: marco duro blanco tipo polaroid pegada */
  background: var(--paper);
  padding: 10px 10px 0;
  border: 1px solid var(--paper);
  transform-origin: center center;
  transition: box-shadow .12s steps(2);
}
.reel__item img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  background: #111;
  filter: grayscale(.12) contrast(1.05);
}
.reel__cap {
  display: block;
  padding: 9px 2px 10px;
  background: var(--paper); color: var(--ink);
  font-family: var(--mono); font-size: 10.5px; line-height: 1.35; letter-spacing: .04em;
  text-transform: none;
  min-height: 46px;
  opacity: 0;                       /* el epígrafe aparece sólo en hover */
  transition: opacity .12s steps(2);
}
.reel__num {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--acid); color: var(--ink);
  font-family: var(--mono); font-weight: 600; font-size: 10px; letter-spacing: .12em;
  padding: 3px 6px;
}
.reel__item.is-held {
  z-index: 5;
  box-shadow: 0 0 0 3px var(--acid), 0 22px 60px rgba(0,0,0,.75);
}
.reel__item.is-held .reel__cap { opacity: 1; }
.reel__hint {
  padding: 14px var(--gut) 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--smoke);
}
/* Sin JS la cinta se ve igual: fotos con su epígrafe visible. */
.no-js .reel__cap { opacity: 1; }
.no-js .reel__track { animation: none; overflow-x: auto; }
.reel__hint .hint-touch { display: none; }
/* En touch no hay hover: los epígrafes se leen siempre y la ayuda cambia. */
@media (hover: none) {
  .reel__cap { opacity: 1; }
  .reel__hint .hint-hover { display: none; }
  .reel__hint .hint-touch { display: inline; }
}

/* ==========================================================================
   SETS EN VIVO — glitch / VHS al pasar el cursor
   ========================================================================== */
.sets { display: grid; gap: 1px; grid-template-columns: repeat(12, 1fr); background: var(--line); }
.set {
  grid-column: span 6;
  display: block; position: relative;
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}
.set__thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #080a08;
}
.set__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.2) contrast(1.06) brightness(.86);
  transition: filter .14s steps(2), transform .2s steps(3);
}
/* dos capas con la misma imagen: al desplazarlas se separan los canales */
.set__thumb::before,
.set__thumb::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--thumb);
  background-size: cover; background-position: center;
  opacity: 0; pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity .1s steps(2);
}
/* una capa tirada al lima, la otra al blanco: desdoble sin salir de paleta */
.set__thumb::before { filter: grayscale(1) sepia(1) hue-rotate(22deg) saturate(5) brightness(1.05); }
.set__thumb::after  { filter: grayscale(1) brightness(1.35) contrast(1.2); }
.set:hover .set__thumb::before { opacity: .55; animation: rgb-a .28s steps(3) infinite; }
.set:hover .set__thumb::after  { opacity: .5;  animation: rgb-b .28s steps(3) infinite; }
.set:hover .set__thumb img { filter: grayscale(0) contrast(1.2) brightness(1); transform: scale(1.03); }
@keyframes rgb-a {
  0%   { transform: translate3d(-7px, 1px, 0); clip-path: inset(0 0 62% 0); }
  50%  { transform: translate3d(-4px, -2px, 0); clip-path: inset(28% 0 30% 0); }
  100% { transform: translate3d(-9px, 2px, 0); clip-path: inset(58% 0 0 0); }
}
@keyframes rgb-b {
  0%   { transform: translate3d(8px, -2px, 0); clip-path: inset(46% 0 22% 0); }
  50%  { transform: translate3d(5px, 2px, 0);  clip-path: inset(6% 0 68% 0); }
  100% { transform: translate3d(10px, -1px, 0); clip-path: inset(70% 0 4% 0); }
}
/* scanlines sutiles + barra de sincronismo */
.set__scan {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0; transition: opacity .1s steps(2);
  background:
    repeating-linear-gradient(180deg, rgba(0,0,0,.34) 0 1px, transparent 1px 3px);
}
.set__scan::after {
  content: ''; position: absolute; left: 0; right: 0; height: 14%;
  background: linear-gradient(180deg, transparent, rgba(207,222,67,.22), transparent);
  animation: vsync 1.5s linear infinite;
}
.set:hover .set__scan { opacity: 1; }
@keyframes vsync { from { top: -16%; } to { top: 104%; } }

.set__body {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; align-items: end;
  padding: clamp(14px, 1.8vw, 24px) clamp(14px, 1.8vw, 24px) clamp(18px, 2.2vw, 28px);
  border-top: 1px solid var(--line);
}
.set__name { font-family: var(--display); font-size: clamp(1.35rem, 3vw, 2.4rem); line-height: .9; }
.set:hover .set__name { color: var(--acid); }
.set__play {
  font-family: var(--mono); font-weight: 600; font-size: 11px; letter-spacing: .18em;
  border: 2px solid var(--paper); padding: 8px 11px; white-space: nowrap;
  transition: background .1s steps(2), color .1s steps(2), border-color .1s steps(2);
}
.set:hover .set__play { background: var(--acid); border-color: var(--acid); color: var(--ink); }

/* ==========================================================================
   TRIPLE CTA — booking, escuchar y seguir con el mismo peso
   ========================================================================== */
.trio { display: grid; gap: 1px; grid-template-columns: repeat(3, 1fr); background: var(--line-hard); }
.trio__col {
  background: var(--ink);
  padding: clamp(24px, 3.4vw, 48px) clamp(18px, 2.4vw, 34px);
  display: flex; flex-direction: column; gap: 16px;
  min-height: clamp(300px, 34vw, 440px);
}
.trio__col > .h-md { margin-bottom: auto; }
.trio__col:hover { background: #070807; }
.links { display: grid; gap: 1px; background: var(--line); }
.links a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--ink); padding: 13px 14px;
  font-family: var(--mono); font-weight: 600; font-size: 12px; letter-spacing: .16em;
  transition: background .1s steps(2), color .1s steps(2), padding-left .1s steps(2);
}
.links a span:last-child { color: var(--smoke); font-weight: 400; letter-spacing: .1em; }
.links a:hover { background: var(--acid); color: var(--ink); padding-left: 22px; }
.links a:hover span:last-child { color: var(--ink); }

/* ==========================================================================
   LISTAS DE DATOS (venues, sellos, cartel compartido)
   ========================================================================== */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags li {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  border: 1px solid var(--line-hard); padding: 7px 10px;
  transition: background .1s steps(2), color .1s steps(2), border-color .1s steps(2);
}
.tags li:hover { background: var(--acid); border-color: var(--acid); color: var(--ink); }
.sec--paper .tags li { border-color: var(--line-ink); }
.sec--paper .tags li:hover { background: var(--ink); color: var(--acid); border-color: var(--ink); }

.rows { border-top: 1px solid var(--line); }
.rows li {
  display: grid; grid-template-columns: 46px 1fr auto; gap: 14px; align-items: baseline;
  /* el margen negativo compensa el padding: el texto no se mueve, pero la fila
     invertida del hover respira a los costados */
  padding: 15px 12px; margin-inline: -12px;
  border-bottom: 1px solid var(--line);
  font-family: var(--body);
}
.rows li:hover { color: var(--acid); }
.rows .n { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--smoke); }
.rows .t { font-family: var(--display); font-size: clamp(1.1rem, 2.2vw, 1.8rem); line-height: 1; }
.rows .d { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--smoke); }
.sec--paper .rows, .sec--paper .rows li { border-color: var(--line-ink); }
.sec--paper .rows .n, .sec--paper .rows .d { color: #5c5f5c; }
/* El lima no se lee sobre blanco: acá el hover se marca con la fila invertida. */
.sec--paper .rows li:hover { color: var(--paper); background: var(--ink); }
.sec--paper .rows li:hover .n, .sec--paper .rows li:hover .d { color: var(--acid); }

/* --- Placeholder de tour ------------------------------------------------- */
.soon {
  position: relative; overflow: hidden;
  min-height: clamp(320px, 52vw, 620px);
  display: grid; place-items: center; text-align: center;
  border-block: 1px solid var(--line-hard);
}
.soon img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5) brightness(.5) contrast(1.1); }
.soon__in { position: relative; z-index: 2; padding: clamp(30px, 6vw, 70px) var(--gut); }
.soon__word {
  font-family: var(--display); line-height: .82; letter-spacing: -.02em;
  font-size: clamp(2.4rem, 12vw, 10rem);
  color: transparent; -webkit-text-stroke: 2px var(--acid); text-stroke: 2px var(--acid);
}
.soon__word b { display: block; color: var(--acid); -webkit-text-stroke: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-foot { background: var(--ink); padding-top: clamp(34px, 5vw, 64px); }
.foot-grid {
  display: grid; gap: 1px; grid-template-columns: repeat(12, 1fr);
  background: var(--line); border-block: 1px solid var(--line);
}
.foot-grid > div { background: var(--ink); padding: clamp(18px, 2.4vw, 30px); }
.foot-mark { display: grid; place-items: start; }
.foot-mark img { width: min(100%, 280px); }
.mgmt { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.mgmt__logo {
  background: var(--paper); padding: 12px 16px; display: block;
}
.mgmt__logo img { width: 120px; }
.foot-bar {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  padding: 18px var(--gut) 26px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; color: var(--smoke);
}
.foot-bar a:hover { color: var(--acid); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  :root { --head-h: 58px; }
  .nav {
    position: fixed; inset: var(--head-h) 0 auto 0; z-index: 89;
    flex-direction: column; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line-hard);
    transform: translate3d(0, -120%, 0);
    transition: transform .18s steps(3, end);
    max-height: calc(100svh - var(--head-h)); overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav a {
    font-size: 15px; padding: 16px var(--gut);
    border-bottom: 1px solid var(--line); border-left: 4px solid transparent;
  }
  .nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--line); border-left-color: var(--acid); }
  /* la nav pasa a position:fixed, así que el botón queda solo en la columna
     elástica: sin justify-self se estira de lado a lado */
  .nav-toggle { display: block; justify-self: end; }
  .site-head { grid-template-columns: auto 1fr; }
  .head-meta { display: none; }

  .c3, .c4, .c5, .c6, .c7, .c8, .c9 { grid-column: span 12; }
  .cell--offset { grid-column-start: auto; }
  .set { grid-column: span 12; }
  .trio { grid-template-columns: 1fr; }
  .trio__col { min-height: 0; }
  .foot-grid > div { grid-column: span 12; }

  .stack__card { grid-template-columns: 1fr; min-height: 0; position: relative; top: auto; }
  .stack__body { grid-column: span 1; border-right: 0; padding-block: clamp(28px, 7vw, 48px); }
  .stack__media { grid-column: span 1; aspect-ratio: 16 / 10; }
  .stack__card:nth-child(even) .stack__body { order: 0; border-left: 0; }
  .stack__card:nth-child(even) .stack__media { order: 0; }

  .hero__grid { grid-template-columns: repeat(3, 1fr); }
  .hero-line:nth-child(2) { padding-left: 6vw; }
  .hero__media img { object-position: 50% 34%; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  /* En pantalla chica el nombre tiene que ocupar el ancho: Anton es condensada,
     con 26vw quedaba a media caja. */
  .hero-line { font-size: clamp(3.4rem, 42vw, 10rem); letter-spacing: -.04em; }
  .reel__item { width: 168px; }
  .sec__head { grid-template-columns: 1fr; }
  .rows li { grid-template-columns: 34px 1fr; }
  .rows .d { grid-column: 2; }
  .foot-bar { flex-direction: column; }
}

/* Pantallas anchas: la grilla no se estira al infinito */
@media (min-width: 1800px) {
  :root { --gut: 60px; }
  .hero-line { font-size: 22rem; }
}

/* Sólo se apaga lo intrusivo (cintas y parallax), nunca las micro-interacciones:
   en Windows el usuario suele tener reduced-motion activado sin saberlo. */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation-duration: 90s; }
  .set__scan::after { animation: none; }
}

@media print { .ticker, .reel, .hero__media { display: none; } body { background: #fff; color: #000; } }
