/* ============================================================
   LATENT · Brand Talent Studio · styles.css
   Tokens según Brand Guidelines vol. 02 (Cap 04–07)
============================================================ */
:root {
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #181818;
  --white: #FFFFFF;
  --white-dim: #E8E8E8;
  --gray: #9A9A9A;
  --gray-2: #5A5A5A;
  --rule: #252525;
  --rule-strong: #333333;
  --dot: #F5A623;
  --dot-bright: #FFB836;

  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --container: 1440px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea { font-family: inherit; }
::selection { background: var(--dot); color: var(--black); }
:focus-visible { outline: 2px solid var(--dot); outline-offset: 4px; }

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.03em; line-height: 1; }

.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.mono { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; }

/* Punto de marca */
.hd { display: inline-block; width: 0.26em; height: 0.26em; background: var(--dot); border-radius: 50%; margin-left: 0.1em; vertical-align: baseline; }
.hd-lg { width: 0.3em; height: 0.3em; }

/* Velo · entrada y transición a través del punto */
.veil { position: fixed; inset: 0; z-index: 1000; background: var(--black); pointer-events: none; display: none; }
.veil.is-on { display: block; }
.veil.is-orange { background: var(--dot); }
.veil-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--dot); left: 50%; top: 50%; transform: translate(-50%, -50%) scale(1); will-change: transform; }
.veil.is-fade { transition: opacity 0.35s var(--ease); opacity: 0; }
@keyframes dotpulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; } 50% { transform: translate(-50%,-50%) scale(1.3); opacity: 0.4; } }
@keyframes dotgrow { to { transform: translate(-50%,-50%) scale(var(--grow, 200)); } }
.veil.is-intro .veil-dot { animation: dotpulse 0.9s var(--ease) 1, dotgrow 0.75s cubic-bezier(0.7, 0, 0.3, 1) 0.9s forwards; }
.veil.is-exit .veil-dot { animation: dotgrow 0.45s cubic-bezier(0.7, 0, 0.3, 1) forwards; }

.dot-char {
  display: inline-block; width: 0.45em; height: 0.45em;
  background: var(--dot); border-radius: 50%;
  margin-left: 0.06em; position: relative; bottom: 0.02em;
}

/* Cursor personalizado (solo desktop con puntero fino) */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button, body.has-cursor input, body.has-cursor textarea, body.has-cursor label { cursor: none; }
  .cursor {
    position: fixed; top: 0; left: 0; width: 10px; height: 10px;
    background: var(--dot); border-radius: 50%; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s;
    mix-blend-mode: normal;
  }
  .cursor.is-link { width: 28px; height: 28px; opacity: 0.85; }
  .cursor.is-hidden { opacity: 0; }
}
@media not ((hover: hover) and (pointer: fine)) { .cursor { display: none; } }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem var(--gutter);
  background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0) 100%);
  transition: background 0.4s var(--ease);
}
.nav.is-solid { background: rgba(10,10,10,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--rule); }
.nav-logo { font-weight: 900; font-size: 1.2rem; letter-spacing: -0.04em; display: flex; align-items: baseline; }
.nav-logo .dot-char { width: 0.42em; height: 0.42em; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--white-dim); position: relative; padding-bottom: 2px; }
.nav-links a { padding-left: 0.9rem; }
.nav-links a::before { content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; margin-top: -3px; border-radius: 50%; background: var(--dot); transform: scale(0); transition: transform 0.3s var(--ease); }
.nav-links a:hover::before, .nav-links a[aria-current="page"]::before { transform: scale(1); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-switch { display: flex; gap: 0.15rem; }
.lang-btn { padding: 0.35rem 0.55rem; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--gray); border-radius: 2px; transition: color 0.2s; }
.lang-btn:hover { color: var(--white); }
.lang-btn.active { color: var(--dot); }

.nav-cta { padding: 0.65rem 1.25rem; background: var(--white); color: var(--black); border-radius: 999px; font-weight: 600; font-size: 0.82rem; transition: background 0.25s var(--ease); white-space: nowrap; }
.nav-cta:hover { background: var(--dot); }

.nav-burger { display: none; width: 40px; height: 40px; position: relative; }
.nav-burger span { position: absolute; left: 10px; width: 20px; height: 1.5px; background: var(--white); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-burger span:nth-child(1) { top: 15px; } .nav-burger span:nth-child(2) { top: 24px; }
.nav.is-open .nav-burger span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav.is-open .nav-burger span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.6rem;
    position: fixed; inset: 0; padding: 7rem var(--gutter) 3rem; background: var(--black);
  }
  .nav.is-open .nav-links a { font-size: 2rem; font-weight: 700; letter-spacing: -0.03em; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .nav.is-open .nav-cta { display: inline-flex; position: fixed; bottom: 3rem; left: var(--gutter); }
}

/* ============================================================
   BOTONES
============================================================ */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: 0.92rem; border: 1px solid transparent; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease); }
.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: var(--dot); }
.btn-secondary { color: var(--white); border-color: var(--rule-strong); }
.btn-secondary:hover { border-color: var(--white); }
.btn-arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: 0.95rem; border-bottom: 1px solid var(--rule-strong); padding-bottom: 3px; transition: border-color 0.3s; }
.link-arrow:hover { border-color: var(--dot); }
.link-arrow .btn-arrow { color: var(--dot); }

/* ============================================================
   HERO · SHOWREEL
============================================================ */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 560px; overflow: hidden; display: flex; align-items: flex-end; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0) 40%, rgba(10,10,10,0.55) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 var(--gutter) clamp(2.5rem, 5vw, 4rem); display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.hero h1 { font-size: clamp(3.2rem, 9vw, 8.5rem); font-weight: 900; letter-spacing: -0.045em; line-height: 0.95; max-width: 12ch; margin-bottom: 1.2rem; }
.hero-sub { font-size: clamp(1rem, 1.3vw, 1.15rem); font-weight: 400; color: var(--white-dim); max-width: 44ch; margin-bottom: 1.6rem; }
.hero-sign { color: var(--gray); margin-bottom: 1.8rem; display: block; }
.hero-ctas { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.hero-sound { position: relative; z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: inline-flex; align-items: center; justify-content: center; color: var(--white); transition: border-color 0.3s; flex-shrink: 0; }
.hero-sound:hover { border-color: var(--dot); }
.hero-sound svg { width: 16px; height: 16px; }
.hero-sound .on { display: none; }
.hero-sound.is-on .on { display: block; } .hero-sound.is-on .off { display: none; }

/* Ticker bajo el hero · Uso 06 del punto como divisor */
.ticker { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); overflow: hidden; white-space: nowrap; padding: 0.9rem 0; }
.ticker-track { display: inline-flex; gap: 0; animation: ticker 40s linear infinite; }
.ticker span { display: inline-flex; align-items: center; color: var(--gray); padding: 0 1.6rem; }
.ticker span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--dot); margin-right: 1.6rem; flex-shrink: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* Hero secundario (páginas internas) */
.page-head { padding: clamp(9rem, 16vw, 13rem) 0 clamp(3rem, 6vw, 5rem); }
.page-head h1 { font-size: clamp(3rem, 8vw, 7.5rem); font-weight: 900; letter-spacing: -0.045em; max-width: 14ch; margin-bottom: 1.5rem; }
.page-head p { font-size: clamp(1.05rem, 1.5vw, 1.3rem); font-weight: 300; color: var(--white-dim); max-width: 52ch; line-height: 1.5; }

/* ============================================================
   BLOQUES COMUNES
============================================================ */
.sec-label { color: var(--dot); margin-bottom: 1.4rem; display: block; }
.sec-title { font-size: clamp(2rem, 4.6vw, 4rem); letter-spacing: -0.035em; max-width: 16ch; margin-bottom: 1.5rem; }
.sec-text { font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--white-dim); max-width: 50ch; line-height: 1.55; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }
.sticky { position: sticky; top: 7rem; }
@media (max-width: 900px) { .sticky { position: static; } }
.rule { border-top: 1px solid var(--rule); }

/* Manifiesto de una frase */
.statement { padding: clamp(6rem, 14vw, 12rem) 0; text-align: left; }
.statement p { font-size: clamp(2rem, 5.5vw, 5.2rem); font-weight: 300; letter-spacing: -0.04em; line-height: 1.05; max-width: 18ch; }
.statement p b { font-weight: 800; }

/* Variantes en fila (mono) */
.tags { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; color: var(--gray); margin-top: 1.5rem; }
.tags span { position: relative; padding-left: 1rem; }
.tags span::before { content: ''; position: absolute; left: 0; top: 0.45em; width: 5px; height: 5px; border-radius: 50%; background: var(--dot); }

/* Lista de subitems (dentro de campaña) */
.sublist { border-top: 1px solid var(--rule); margin-top: 2.5rem; }
.sublist > div { display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--rule); }
.sublist h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em; }
.sublist p { color: var(--gray); font-size: 0.95rem; max-width: 52ch; }
@media (max-width: 700px) { .sublist > div { grid-template-columns: 1fr; gap: 0.4rem; } }

/* ============================================================
   TALENTO DIGITAL · bloque interactivo (home)
============================================================ */
.talent { background: var(--black-2); }
.talent-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .talent-grid { grid-template-columns: 1fr; } }
.talent-stage { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--black-3); }
.talent-scene { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s var(--ease); }
.talent-scene.is-active { opacity: 1; }
.talent-scene .placeholder { position: absolute; inset: 0; z-index: 0; }
.talent-scene img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.talent-scene[data-scene="0"] .placeholder { background: radial-gradient(ellipse at 40% 30%, #3a3a3a 0%, #0f0f0f 70%); }
.talent-scene[data-scene="1"] .placeholder { background: radial-gradient(ellipse at 60% 20%, #4a3a26 0%, #0e0b08 70%); }
.talent-scene[data-scene="2"] .placeholder { background: radial-gradient(ellipse at 50% 80%, #2b3a48 0%, #090c10 70%); }
.talent-scene[data-scene="3"] .placeholder { background: radial-gradient(ellipse at 50% 40%, #5a5a5a 0%, #141414 70%); }
.talent-stage .scene-name { position: absolute; left: 1.4rem; bottom: 1.4rem; color: var(--white); z-index: 2; }
.talent-controls { display: flex; flex-wrap: wrap; gap: 0.4rem 1.8rem; margin: 2rem 0 2.4rem; }
.talent-btn { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.4rem 0; font-size: 0.95rem; font-weight: 500; color: var(--gray); transition: color 0.25s; }
.talent-btn::before { content: ''; width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--gray-2); transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease); }
.talent-btn:hover { color: var(--white); }
.talent-btn:hover::before { border-color: var(--white); }
.talent-btn.is-active { color: var(--white); }
.talent-btn.is-active::before { background: var(--dot); border-color: var(--dot); transform: scale(1.3); }
.talent-stage .scene-name { display: inline-flex; align-items: center; gap: 0.6rem; }
.talent-stage .scene-name::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--dot); animation: dotpulse-inline 2.4s ease-in-out infinite; }
@keyframes dotpulse-inline { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.4; } }
.talent-stage::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0) 60%, rgba(10,10,10,0.6) 100%); pointer-events: none; }

/* ============================================================
   PROYECTOS · galería
============================================================ */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; background: var(--black-3); cursor: pointer; grid-column: span 6; aspect-ratio: 16 / 9; text-align: left; width: 100%; }
.gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 8; }
.gallery-item:nth-child(2), .gallery-item:nth-child(5) { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery-item video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: filter 0.4s var(--ease); }
.gallery-item:hover video { filter: brightness(1); }
.gallery-item .g-title { position: absolute; left: 1.3rem; right: 1.3rem; bottom: 1.2rem; z-index: 2; font-size: clamp(1rem, 1.5vw, 1.3rem); font-weight: 600; letter-spacing: -0.02em; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.gallery-item .g-num { position: absolute; top: 1.2rem; left: 1.3rem; z-index: 2; color: var(--white-dim); }
.gallery-item .g-play { position: absolute; top: 1.15rem; right: 1.3rem; z-index: 2; width: 12px; height: 12px; border-radius: 50%; background: var(--dot); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .g-play { opacity: 1; animation: dotpulse-inline 1.4s ease-in-out infinite; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0) 35%, rgba(10,10,10,0) 60%, rgba(10,10,10,0.7) 100%); pointer-events: none; z-index: 1; }
@media (max-width: 900px) {
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 6; aspect-ratio: 16 / 9; }
}
@media (max-width: 600px) {
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 12; }
  .gallery-item .g-play { opacity: 1; }
}
.gallery.gallery-home .gallery-item:nth-child(n) { grid-column: span 6; aspect-ratio: 16 / 9; }
@media (max-width: 600px) { .gallery.gallery-home .gallery-item:nth-child(n) { grid-column: span 12; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,10,10,0.96); display: none; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.lightbox.is-open { display: flex; }
.lightbox video { max-width: 100%; max-height: calc(100vh - 8rem); width: auto; height: auto; background: #000; outline: none; }
.lightbox-title { position: absolute; left: var(--gutter); bottom: 1.6rem; font-weight: 600; letter-spacing: -0.02em; }
.lightbox-close { position: absolute; top: 1.2rem; right: var(--gutter); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.lightbox-close:hover { border-color: var(--dot); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.lightbox-nav:hover { border-color: var(--dot); }
.lightbox-prev { left: var(--gutter); } .lightbox-next { right: var(--gutter); }
@media (max-width: 700px) { .lightbox-nav { top: auto; bottom: 1.2rem; transform: none; } .lightbox-title { bottom: 5rem; } }

/* ============================================================
   SERVICIOS
============================================================ */
.service-block { padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--rule); }
.service-block h3 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -0.035em; margin-bottom: 1.2rem; }
.service-block .note { color: var(--gray); margin-top: 2rem; display: block; }

/* Proceso (secuencia real: numeración justificada) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); margin-top: 2rem; }
.step { padding: 2.2rem 2rem 2.2rem 0; border-right: 1px solid var(--rule); }
.step:not(:first-child) { padding-left: 2rem; }
.step:last-child { border-right: 0; }
.step .mono { color: var(--dot); display: block; margin-bottom: 1.2rem; }
.step h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.step p { font-size: 0.9rem; color: var(--gray); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .step:nth-child(2) { border-right: 0; } .step:nth-child(-n+2) { border-bottom: 1px solid var(--rule); } .step:nth-child(3) { padding-left: 0; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .step { border-right: 0; border-bottom: 1px solid var(--rule); padding-left: 0 !important; } .step:last-child { border-bottom: 0; } }

/* ============================================================
   TALENTO · tres pilares en secuencia
============================================================ */
.pillars-seq { margin-top: 3rem; }
.pillars-top { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.pillar { background: var(--black); padding: clamp(1.8rem, 3vw, 2.8rem); }
.pillar .mono { color: var(--dot); display: block; margin-bottom: 1.4rem; }
.pillar h3 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); letter-spacing: -0.035em; margin-bottom: 1rem; }
.pillar p { color: var(--white-dim); font-size: 0.98rem; max-width: 46ch; }
.pillar .meta { margin-top: 1.6rem; color: var(--gray); font-size: 0.9rem; display: grid; gap: 0.3rem; }
.pillar .meta b { color: var(--white); font-weight: 500; }
.pillars-join { display: grid; grid-template-columns: 1fr 1fr; height: 56px; }
.pillars-join span { position: relative; }
.pillars-join span::before { content: ''; position: absolute; left: 50%; top: 0; width: 1px; height: 100%; background: var(--rule-strong); }
.pillars-join span::after { content: ''; position: absolute; bottom: 0; height: 1px; background: var(--rule-strong); }
.pillars-join span:first-child::after { left: 50%; right: 0; }
.pillars-join span:last-child::after { left: 0; right: 50%; }
.pillars-join { position: relative; }
.pillars-join::after { content: ''; position: absolute; left: 50%; bottom: -6px; width: 12px; height: 12px; margin-left: -6px; border-radius: 50%; background: var(--dot); animation: dotpulse-inline 2.4s ease-in-out infinite; z-index: 2; }
.pillars-bottom { border: 1px solid var(--rule); border-top: 0; }
.pillars-bottom .pillar { max-width: none; }
@media (max-width: 800px) { .pillars-top { grid-template-columns: 1fr; } .pillars-join { display: none; } .pillars-bottom { border-top: 1px solid var(--rule); margin-top: 1rem; } }

/* ============================================================
   CONTACTO · formulario
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(2.5rem, 5vw, 5rem); border-top: 1px solid var(--rule); padding-top: 3rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info div { margin-bottom: 2.2rem; }
.contact-info .mono { color: var(--dot); display: block; margin-bottom: 0.5rem; }
.contact-info a { border-bottom: 1px solid var(--rule-strong); transition: border-color 0.3s; }
.contact-info a:hover { border-color: var(--dot); }
form.contact-form { display: grid; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group label { display: block; color: var(--gray); margin-bottom: 0.5rem; }
.form-group label .req { color: var(--dot); }
.form-group input, .form-group textarea { width: 100%; padding: 0.95rem 0; background: transparent; border: 0; border-bottom: 1px solid var(--rule-strong); color: var(--white); font-size: 1rem; outline: none; transition: border-color 0.3s; border-radius: 0; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--dot); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; align-items: flex-start; gap: 0.8rem; cursor: pointer; }
.form-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--dot); flex-shrink: 0; }
.form-check span { font-size: 0.95rem; color: var(--white-dim); }
.form-submit { justify-self: start; }
.form-status { display: none; padding: 1rem 0; font-size: 0.95rem; border-top: 1px solid var(--rule); }
.form-status.success { display: block; color: var(--dot); }

/* ============================================================
   CTA final + FOOTER
============================================================ */
.cta-final { position: relative; overflow: hidden; padding: clamp(8rem, 16vw, 14rem) 0; background: var(--black); }
.cta-dot { position: absolute; left: var(--gutter); top: 50%; width: 14px; height: 14px; margin-top: -7px; border-radius: 50%; background: var(--dot); transform: scale(1); transform-origin: center; will-change: transform; pointer-events: none; }
.cta-final .wrap { position: relative; z-index: 2; }
.cta-final h2 { font-size: clamp(2.6rem, 7vw, 7rem); letter-spacing: -0.045em; line-height: 0.95; max-width: 12ch; margin-bottom: 2.4rem; transition: color 0.4s var(--ease); }
.cta-final .btn { transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.cta-final.is-orange h2 { color: var(--black); }
.cta-final.is-orange .btn-primary { background: var(--black); color: var(--white); }
.cta-final.is-orange .btn-primary:hover { background: var(--white); color: var(--black); }
.cta-final.is-orange .hd { background: var(--black); }

.site-footer { border-top: 1px solid var(--rule); padding: 3.5rem 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-sign { color: var(--gray); display: block; }
.footer-word { font-size: clamp(5rem, 19.5vw, 20rem); font-weight: 900; letter-spacing: -0.06em; line-height: 0.8; display: flex; align-items: baseline; padding: 1rem 0 0; margin-bottom: -0.06em; overflow: hidden; }
.footer-word .dot-char { width: 0.2em; height: 0.2em; margin-left: 0.04em; }
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--white-dim); font-size: 0.92rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--dot); }
.footer-col .lang-switch { margin-left: -0.55rem; }
.footer-bottom { border-top: 1px solid var(--rule); padding: 1.4rem 0 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: var(--gray-2); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .talent-scene { transition: none; }
  .ticker-track { animation: none; }
  .veil { display: none !important; }
}
