/* Variante 02 — Mirar dos veces
   Cinematográfico · Full-bleed · Negro puro · UI invisible
   ========================================================= */

:root {
  --black: #000;
  --white: #FFF;
  --gray: #8A8A8A;
  --gray-dim: #4a4a4a;
  --line: #1a1a1a;
  --line-strong: #222;
  --text-soft: #C8C8C8;
  --ease-cine: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible { outline: 2px solid #FFF; outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: #FFF; color: #000;
  padding: 8px 12px; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 500; transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; }

/* ----- Variant bar (sticky arriba) ------------------------ */
.variant-bar {
  position: fixed; top: 0; left: 0; right: 0;
  background: #000; border-bottom: 1px solid #222;
  padding: 10px 32px;
  display: flex; gap: 20px; align-items: center;
  z-index: 200;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.variant-bar .label { color: var(--gray); }
.variant-bar a { padding: 4px 8px; border: 1px solid transparent; color: var(--gray); }
.variant-bar a.active { border-color: #FFF; background: #FFF; color: #000; }
.variant-bar a:hover:not(.active) { color: var(--white); }

/* ----- Nav flotante --------------------------------------- */
.nav {
  position: fixed; top: 42px; left: 0; right: 0;
  padding: 24px 40px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
  transition: background 0.4s var(--ease-cine), backdrop-filter 0.4s var(--ease-cine);
}
.nav.scrolled {
  mix-blend-mode: normal;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav .logo {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #FFF;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 400; color: #FFF; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-cine);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.current::after { transform: scaleX(1); }

.nav .lang {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 11px; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  font-variant-numeric: tabular-nums;
}
.nav .lang a { padding: 2px 0; border-bottom: 1px solid transparent; }
.nav .lang a.on { color: #FFF; border-bottom-color: #FFF; }
.nav .lang .sep { opacity: 0.4; }

/* ----- Hero ------------------------------------------------ */
.hero {
  position: relative; width: 100%;
  height: 100vh; height: 100svh; height: 100dvh;
  min-height: 620px; overflow: hidden; background: #000;
}
.hero-img { position: absolute; inset: 0; overflow: hidden; }
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform; transform: scale(1);
}
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.35) 0%,
    transparent 22%,
    transparent 55%,
    rgba(0,0,0,0.75) 100%);
  pointer-events: none; z-index: 1;
}
.hero-img::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none; z-index: 1;
}

/* Ken Burns */
@media (prefers-reduced-motion: no-preference) {
  .hero-img img,
  .hero-portrait img { animation: kenBurns 26s ease-in-out infinite alternate; }
}
@keyframes kenBurns {
  from { transform: scale(1.0) translate3d(0, 0, 0); }
  to   { transform: scale(1.05) translate3d(-0.6%, -0.4%, 0); }
}

.hero-content {
  position: absolute; inset: 0;
  padding: 48px 40px calc(48px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; justify-content: flex-end;
  z-index: 2;
}
.hero-headline {
  font-size: clamp(64px, 12vw, 180px);
  font-weight: 300; line-height: 0.88; letter-spacing: -0.04em;
  margin-bottom: 32px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.hero-headline .word {
  display: inline-block; overflow: hidden; vertical-align: top;
}
.hero-headline .word > span {
  display: inline-block;
  transform: translateY(110%); opacity: 0;
  animation: wordUp 1.1s var(--ease-cine) forwards;
}
.hero-headline .word:nth-child(1) > span { animation-delay: 0.15s; }
.hero-headline .word:nth-child(2) > span { animation-delay: 0.32s; }
.hero-headline .word:nth-child(3) > span { animation-delay: 0.49s; }
.hero-headline .word:nth-child(4) > span { animation-delay: 0.66s; }
@keyframes wordUp { to { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hero-headline .word > span { animation: none; transform: none; opacity: 1; }
}

.hero-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.4);
  padding-top: 16px;
  opacity: 0; animation: fadeUp 1s var(--ease-cine) 0.9s forwards;
}
@media (prefers-reduced-motion: reduce) { .hero-meta { animation: none; opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-meta .caption {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  max-width: 520px; line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-meta .index {
  font-size: 11px; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  white-space: nowrap;
}

/* ----- Intro band ----------------------------------------- */
.intro { padding: 140px 40px 160px; max-width: 1200px; }
.intro .label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 48px;
}
.intro h2 {
  font-size: clamp(36px, 5vw, 68px); line-height: 1.05;
  letter-spacing: -0.025em; font-weight: 300;
  max-width: 980px;
}
.intro h2 em { font-style: normal; color: var(--gray); }

/* ----- Series grandes (home) ------------------------------ */
.series { padding: 0 0 40px; }
.series-item { position: relative; border-top: 1px solid #222; }
.series-slide {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 86vh; align-items: stretch;
}
.series-slide.reverse .series-image { order: 2; }
.series-slide.reverse .series-text { order: 1; }
.series-image {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5; min-height: 100%;
  background: #0a0a0a;
}
.series-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
  transform: translate3d(0, var(--py, 0px), 0) scale(1.06);
  transition: transform 0.1s linear;
}
.series-text {
  padding: 80px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.series-text .tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray);
}
.series-text .title {
  font-size: clamp(40px, 5vw, 72px); font-weight: 300;
  line-height: 0.98; letter-spacing: -0.03em;
  margin-top: 32px;
}
.series-text .excerpt {
  font-size: 15px; line-height: 1.65;
  color: var(--text-soft); margin-top: 24px; max-width: 420px;
}
.series-text .cta {
  margin-top: 48px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  padding-bottom: 6px; border-bottom: 1px solid #FFF;
  align-self: flex-start;
  transition: color 0.3s var(--ease-cine);
}
.series-text .cta .arrow { display: inline-block; transition: transform 0.4s var(--ease-cine); }
.series-text .cta:hover .arrow,
.series-text .cta:focus-visible .arrow { transform: translateX(6px); }
.series-text .bottom {
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.12em; color: var(--gray);
  padding-top: 20px; border-top: 1px solid #222; margin-top: 60px;
}

/* ----- Reveal --------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.1s var(--ease-cine), transform 1.1s var(--ease-cine);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- Cursor personalizado (pointer fine) ---------------- */
@media (hover: hover) and (pointer: fine) {
  .series-image { cursor: none; }
  .cursor-dot {
    position: fixed; width: 56px; height: 56px;
    border: 1px solid rgba(255,255,255,0.9); border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: opacity 0.25s var(--ease-cine), transform 0.25s var(--ease-cine);
    mix-blend-mode: difference; z-index: 50;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: #FFF;
  }
  .series-image:hover .cursor-dot { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* ----- Footer --------------------------------------------- */
footer {
  padding: 80px 40px 40px; border-top: 1px solid #222;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
footer .col h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 16px; font-weight: 400;
}
footer .col a, footer .col p {
  display: block; margin-bottom: 6px; font-size: 13px; color: #FFF;
  transition: color 0.3s var(--ease-cine);
}
footer .col a:hover { color: var(--gray); }
footer .copy {
  grid-column: 1 / -1; padding-top: 40px; border-top: 1px solid #222;
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--gray); letter-spacing: 0.1em;
}

/* ========= WORK (carousel vertical) ======================== */
.work-hero {
  height: 60vh; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 40px 80px;
  border-bottom: 1px solid var(--line-strong);
}
.work-hero .label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 32px;
}
.work-hero h1 {
  font-size: clamp(48px, 8vw, 128px); font-weight: 300;
  line-height: 0.92; letter-spacing: -0.035em; max-width: 1200px;
}
.work-hero .sub {
  margin-top: 28px; max-width: 620px;
  font-size: 15px; color: var(--text-soft); line-height: 1.6;
}

.work-slide {
  position: relative;
  display: grid; grid-template-columns: 1.25fr 1fr;
  min-height: 100vh; min-height: 100svh; align-items: stretch;
  border-top: 1px solid var(--line-strong);
}
.work-slide.reverse .work-slide-img { order: 2; }
.work-slide.reverse .work-slide-text { order: 1; }
.work-slide-img {
  position: relative; overflow: hidden;
  min-height: 100%; background: #0a0a0a;
  aspect-ratio: auto;
}
.work-slide-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: translate3d(0, var(--py, 0px), 0) scale(1.06);
  will-change: transform;
  transition: transform 0.1s linear;
}
.work-slide-text {
  padding: clamp(48px, 8vw, 120px) clamp(32px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 24px;
}
.work-slide-text .order-mono {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px; color: var(--gray);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.work-slide-text h2 {
  font-size: clamp(40px, 6vw, 88px); font-weight: 300;
  line-height: 0.96; letter-spacing: -0.03em;
}
.work-slide-text .tagline {
  font-size: 16px; color: var(--text-soft); line-height: 1.55;
  max-width: 440px;
}
.work-slide-text .meta {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px; color: var(--gray);
  letter-spacing: 0.12em;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  padding-top: 20px; border-top: 1px solid var(--line-strong);
  max-width: 520px;
}
.work-slide-text .meta span { white-space: nowrap; }
.work-slide-text .cta {
  margin-top: 20px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  padding-bottom: 6px; border-bottom: 1px solid #FFF;
  align-self: flex-start;
  transition: color 0.3s var(--ease-cine);
}
.work-slide-text .cta .arrow { display: inline-block; transition: transform 0.4s var(--ease-cine); }
.work-slide-text .cta:hover .arrow,
.work-slide-text .cta:focus-visible .arrow { transform: translateX(6px); }

/* ========= SERIE DETALLE =================================== */
.serie-hero {
  position: relative;
  height: 100vh; height: 100svh; height: 100dvh;
  min-height: 620px; overflow: hidden; background: #000;
}
.serie-hero-img { position: absolute; inset: 0; }
.serie-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}
.serie-hero-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.4) 0%,
    transparent 25%,
    transparent 50%,
    rgba(0,0,0,0.8) 100%);
  z-index: 1;
}
.serie-hero-content {
  position: absolute; inset: 0;
  padding: 48px 40px calc(48px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; justify-content: flex-end;
  z-index: 2;
}
.serie-hero-content .crumb {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 24px;
}
.serie-hero-content .crumb a { border-bottom: 1px solid rgba(255,255,255,0.3); }
.serie-hero-content h1 {
  font-size: clamp(56px, 11vw, 168px); font-weight: 300;
  line-height: 0.9; letter-spacing: -0.04em;
  max-width: 1400px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.serie-hero-content .meta-row {
  margin-top: 32px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.4);
  display: flex; flex-wrap: wrap; gap: 12px 32px;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.serie-hero-content .meta-row span { text-shadow: 0 1px 10px rgba(0,0,0,0.4); }

.serie-intro {
  padding: clamp(100px, 14vw, 200px) clamp(20px, 5vw, 60px);
  max-width: 900px; margin: 0 auto;
}
.serie-intro .eyebrow {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 32px;
}
.serie-intro p {
  font-size: clamp(18px, 2.2vw, 26px); font-weight: 300;
  line-height: 1.55; letter-spacing: -0.01em; color: #ECECEC;
}

.gallery { position: relative; }
.gallery-item {
  position: relative; width: 100%;
  background: #0a0a0a; overflow: hidden;
  border-top: 1px solid var(--line);
}
.gallery-item img {
  width: 100%; height: auto; display: block;
  will-change: transform;
  transform: translate3d(0, var(--py, 0px), 0);
  transition: transform 0.1s linear;
}
.gallery-item .num {
  position: absolute; top: 32px; left: 32px;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  mix-blend-mode: difference;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  z-index: 2;
  padding: 6px 10px;
  background: rgba(0,0,0,0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
}

.serie-next {
  padding: clamp(100px, 14vw, 180px) 40px;
  border-top: 1px solid var(--line-strong);
  text-align: center;
}
.serie-next .eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 28px;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
}
.serie-next a.next-link {
  display: inline-flex; align-items: baseline; gap: 24px;
  font-size: clamp(40px, 7vw, 96px); font-weight: 300;
  line-height: 1.02; letter-spacing: -0.03em;
  color: #FFF;
  padding-bottom: 16px; border-bottom: 1px solid #FFF;
  transition: gap 0.5s var(--ease-cine);
}
.serie-next a.next-link:hover { gap: 48px; }
.serie-next a.next-link .arrow {
  font-size: 0.6em; transition: transform 0.5s var(--ease-cine);
}
.serie-next a.next-link:hover .arrow { transform: translateX(10px); }

.serie-keys {
  position: fixed; left: 0; right: 0; bottom: 20px;
  display: flex; justify-content: center; gap: 16px;
  pointer-events: none; z-index: 90;
  opacity: 0; transition: opacity 0.4s var(--ease-cine);
}
.serie-keys.visible { opacity: 1; }
.serie-keys a {
  pointer-events: auto;
  padding: 10px 14px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: background 0.25s var(--ease-cine), color 0.25s var(--ease-cine);
}
.serie-keys a:hover { background: rgba(255,255,255,0.95); color: #000; }
.serie-keys .kbd {
  display: inline-block; margin: 0 4px;
  padding: 2px 6px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px; font-size: 9px;
}

/* ========= ABOUT =========================================== */
.about-hero {
  position: relative;
  height: 100vh; height: 100svh; height: 100dvh;
  min-height: 600px; overflow: hidden; background: #000;
}
.hero-portrait { position: absolute; inset: 0; }
.hero-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}
.hero-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.12) 25%,
    rgba(0,0,0,0.12) 55%,
    rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.about-hero-content {
  position: absolute; inset: 0;
  padding: 48px 40px calc(48px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; justify-content: flex-end;
  z-index: 2;
}
.about-hero-content .eyebrow {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 20px;
}
.about-hero-content h1 {
  font-size: clamp(56px, 10vw, 156px); font-weight: 300;
  line-height: 0.9; letter-spacing: -0.04em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.about-hero-content .sub {
  margin-top: 28px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.4);
  max-width: 580px;
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  opacity: 0; animation: fadeUp 1.2s var(--ease-cine) 0.9s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .about-hero-content .sub { animation: none; opacity: 1; }
}

.about-body {
  padding: clamp(120px, 14vw, 200px) clamp(20px, 5vw, 60px);
  max-width: 880px; margin: 0 auto;
}
.about-body .eyebrow {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 40px;
}
.about-body p {
  font-size: clamp(17px, 2vw, 23px); font-weight: 300;
  line-height: 1.6; letter-spacing: -0.005em;
  color: #E4E4E4; margin-bottom: 1.4em;
}
.about-body p:last-child { margin-bottom: 0; }

.about-contact-band {
  padding: clamp(80px, 10vw, 140px) 40px;
  border-top: 1px solid var(--line-strong);
  text-align: center;
}
.about-contact-band a {
  font-size: clamp(32px, 5vw, 64px); font-weight: 300;
  letter-spacing: -0.02em; line-height: 1;
  border-bottom: 1px solid #FFF; padding-bottom: 10px;
  transition: color 0.3s var(--ease-cine);
}
.about-contact-band a:hover { color: var(--gray); border-color: var(--gray); }

/* ========= CONTACT ========================================= */
.contact-wrap {
  min-height: 100vh; min-height: 100svh;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 6vw, 80px) 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px);
  max-width: 1600px; margin: 0 auto;
}
.contact-left h1 {
  font-size: clamp(56px, 9vw, 140px); font-weight: 300;
  line-height: 0.92; letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.contact-left .intro {
  font-size: clamp(16px, 1.6vw, 20px); font-weight: 300;
  line-height: 1.55; color: var(--text-soft); max-width: 520px;
}
.contact-left .ways {
  margin-top: 60px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-left .ways .way {
  display: flex; flex-direction: column; gap: 2px;
  padding: 18px 0; border-top: 1px solid var(--line-strong);
}
.contact-left .ways .way:last-child { border-bottom: 1px solid var(--line-strong); }
.contact-left .ways .way .lbl {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 10px; color: var(--gray);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.contact-left .ways .way a {
  font-size: clamp(18px, 1.7vw, 22px); font-weight: 300;
  transition: color 0.3s var(--ease-cine);
}
.contact-left .ways .way a:hover { color: var(--gray); }

.contact-form {
  display: flex; flex-direction: column; gap: 32px;
  padding-top: 24px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 10px; }
.contact-form label {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray);
}
.contact-form input,
.contact-form textarea {
  font: inherit; color: #FFF;
  background: transparent;
  border: none; border-bottom: 1px solid #2c2c2c;
  padding: 10px 0 14px;
  font-size: 17px; font-weight: 300;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s var(--ease-cine);
  width: 100%; resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-bottom-color: #FFF;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #555; }
.contact-form textarea { min-height: 140px; }
.contact-form .submit {
  align-self: flex-start; margin-top: 8px;
  padding: 16px 28px;
  background: transparent; color: #FFF;
  border: 1px solid #FFF;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease-cine), color 0.3s var(--ease-cine);
  display: inline-flex; align-items: center; gap: 12px;
}
.contact-form .submit:hover { background: #FFF; color: #000; }
.contact-form .submit .arrow { display: inline-block; transition: transform 0.4s var(--ease-cine); }
.contact-form .submit:hover .arrow { transform: translateX(6px); }
.contact-form .legal {
  font-size: 11px; color: var(--gray); line-height: 1.5;
  letter-spacing: 0.02em; max-width: 440px;
}
.contact-form .confirm {
  display: none; padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  font-size: 13px; color: #FFF;
}
.contact-form.sent .confirm { display: block; }

/* ========= 404 ============================================= */
.nf-wrap {
  min-height: 100vh; min-height: 100svh;
  position: relative; overflow: hidden; background: #000;
  display: flex; align-items: center; justify-content: center;
}
.nf-bg {
  position: absolute; inset: 0; opacity: 0.35;
}
.nf-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(60%) contrast(1.05) blur(2px);
}
.nf-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 30%, rgba(0,0,0,0.9) 100%);
}
.nf-content {
  position: relative; z-index: 2;
  text-align: center; padding: 40px;
}
.nf-content .code {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 13px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5); margin-bottom: 32px;
}
.nf-content h1 {
  font-size: clamp(48px, 8vw, 120px); font-weight: 300;
  line-height: 0.95; letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.nf-content p {
  font-size: clamp(16px, 1.6vw, 20px); color: var(--text-soft);
  max-width: 520px; margin: 0 auto 48px;
  line-height: 1.55; font-weight: 300;
}
.nf-content a.back {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding-bottom: 6px; border-bottom: 1px solid #FFF;
}
.nf-content a.back .arrow {
  transition: transform 0.4s var(--ease-cine);
  display: inline-block;
}
.nf-content a.back:hover .arrow { transform: translateX(6px); }

/* ========= TABLET ========================================== */
@media (max-width: 1100px) {
  .nav { padding: 20px 28px; }
  .nav-links { gap: 22px; }
  .hero-content { padding: 40px 28px calc(40px + env(safe-area-inset-bottom)); }
  .intro { padding: 120px 28px 140px; }
  .series-text { padding: 60px 32px; }
  footer { padding: 60px 28px 32px; }

  .work-hero { padding: 0 28px 60px; }
  .work-slide { grid-template-columns: 1fr 1fr; }

  .serie-hero-content { padding: 40px 28px calc(40px + env(safe-area-inset-bottom)); }
}

/* ========= MOBILE ========================================== */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-links { gap: 14px; font-size: 10px; }
  .nav .lang { font-size: 10px; gap: 6px; }
  .hero { min-height: 560px; }
  .hero-headline { font-size: clamp(48px, 14vw, 88px); }
  .hero-content { padding: 32px 20px calc(32px + env(safe-area-inset-bottom)); }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-meta .caption { max-width: none; }
  .intro { padding: 80px 20px 100px; }

  .series-slide { grid-template-columns: 1fr; min-height: 0; }
  .series-slide.reverse .series-image { order: 1; }
  .series-slide.reverse .series-text { order: 2; }
  .series-image { aspect-ratio: 4 / 5; min-height: 0; }
  .series-image img { transform: translate3d(0, var(--py, 0px), 0) scale(1.04); }
  .series-text { padding: 40px 20px 60px; }
  .series-text .title { margin-top: 20px; }
  .series-text .bottom { margin-top: 40px; }

  .work-hero { padding: 0 20px 48px; min-height: 380px; }
  .work-slide { grid-template-columns: 1fr; min-height: 0; }
  .work-slide.reverse .work-slide-img { order: 1; }
  .work-slide.reverse .work-slide-text { order: 2; }
  .work-slide-img { aspect-ratio: 4 / 5; min-height: 0; }
  .work-slide-text { padding: 48px 20px 60px; }

  .serie-hero-content { padding: 32px 20px calc(32px + env(safe-area-inset-bottom)); }
  .gallery-item .num { top: 16px; left: 16px; font-size: 10px; }

  .about-body { padding: 80px 20px; }
  .about-hero-content { padding: 32px 20px calc(32px + env(safe-area-inset-bottom)); }

  .contact-wrap { grid-template-columns: 1fr; padding: 100px 20px 40px; gap: 60px; }
  .contact-left .ways { margin-top: 40px; }

  footer { grid-template-columns: 1fr 1fr; padding: 40px 20px; }
  footer .copy { flex-direction: column; gap: 8px; }

  .variant-bar { padding: 8px 16px; gap: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .variant-bar::-webkit-scrollbar { display: none; }

  .serie-keys { display: none; }
}

@media (max-width: 420px) {
  .nav-links { gap: 10px; }
  .hero-headline { font-size: clamp(44px, 15vw, 72px); letter-spacing: -0.03em; }
  .serie-hero-content h1 { font-size: clamp(48px, 13vw, 88px); }
}
