/* =============================================================
   ACTO VOLTAJE — HOME
   Editorial-technical. Theatre × AI. One continuous show.
   ============================================================= */

@import url("colors_and_type.css");

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--av-paper);
  color: var(--av-fg);
  overflow-x: hidden;
}

/* =============================================================
   SCROLL PROGRESS BAR (top)
   ============================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 100;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--av-yellow), var(--av-coral), var(--av-electric));
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(255, 183, 0, 0.5);
}

/* =============================================================
   PARALLAX HELPERS
   ============================================================= */
[data-parallax-y],
[data-parallax-img] {
  will-change: transform;
}
.manifesto-stage-frame { position: relative; overflow: hidden; }
.manifesto-stage-frame img[data-parallax-img] {
  position: absolute;
  inset: -8% 0 -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
}
.div-tile { perspective: 800px; }
.div-tile img[data-parallax-img] {
  transform-origin: center;
}

/* hero left/aside slight parallax — only on desktop */
@media (max-width: 900px) {
  [data-parallax-y] { transform: none !important; }
}

/* =============================================================
   COUNT-UP STAT BUMP
   ============================================================= */
.count.is-running {
  animation: count-bump 380ms var(--av-ease-out);
}
@keyframes count-bump {
  0%   { transform: translateY(6px); opacity: 0; }
  60%  { transform: translateY(0);   opacity: 1; }
  100% { transform: translateY(0);   opacity: 1; }
}

/* =============================================================
   LAYOUT PRIMITIVES
   ============================================================= */
.shell {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.shell--wide { max-width: 1600px; }
.shell-inner {
  position: relative;
  padding-left: clamp(0px, 5vw, 88px); /* room for hilo conductor */
}

/* =============================================================
   HILO CONDUCTOR — sticky scene marker (theatre script gutter)
   ============================================================= */
.hilo {
  position: fixed;
  left: clamp(16px, 2.5vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  mix-blend-mode: difference;
  color: #fff;
}
.hilo-line { width: 1px; height: 48px; background: currentColor; opacity: 0.4; }
.hilo-dots { display: flex; flex-direction: column; gap: 10px; pointer-events: auto; }
.hilo-dots a {
  display: block;
  width: 22px;
  text-align: center;
  color: currentColor;
  text-decoration: none;
  font-size: 10px;
  opacity: 0.45;
  transition: opacity var(--av-dur-base) var(--av-ease-out);
}
.hilo-dots a.is-active { opacity: 1; }
.hilo-dots a:hover { opacity: 1; }
.hilo-dots a::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: currentColor;
  margin: 4px auto 0;
  opacity: 0.5;
}
.hilo-dots a:last-child::after { display: none; }

@media (max-width: 900px) {
  .hilo { display: none; }
}

/* =============================================================
   TOP NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 18px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--av-dur-base) var(--av-ease-out),
              backdrop-filter var(--av-dur-base) var(--av-ease-out),
              border-color var(--av-dur-base) var(--av-ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(9, 49, 96, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--av-paper);
}
.nav-mark img {
  width: 38px; height: 38px;
  display: block;
}
.nav-mark .nav-mark-name {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--av-paper);
}
.nav-mark .nav-mark-name span {
  display: block;
  font-size: 9px;
  opacity: 0.6;
  letter-spacing: 0.32em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--av-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-paper);
  text-decoration: none;
  position: relative;
  padding-block: 8px;
  transition: color var(--av-dur-fast) var(--av-ease-out);
}
.nav-links a::before {
  content: "[";
  opacity: 0;
  margin-right: 4px;
  transform: translateX(4px);
  display: inline-block;
  transition: opacity var(--av-dur-base) var(--av-ease-out),
              transform var(--av-dur-base) var(--av-ease-out);
  color: var(--av-yellow);
}
.nav-links a::after {
  content: "]";
  opacity: 0;
  margin-left: 4px;
  transform: translateX(-4px);
  display: inline-block;
  transition: opacity var(--av-dur-base) var(--av-ease-out),
              transform var(--av-dur-base) var(--av-ease-out);
  color: var(--av-yellow);
}
.nav-links a:hover::before,
.nav-links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.nav-cta {
  font-family: var(--av-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-navy);
  background: var(--av-yellow);
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--av-dur-fast) var(--av-ease-out),
              box-shadow var(--av-dur-fast) var(--av-ease-out);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 183, 0, 0.45);
}
.nav-cta-arrow { display: inline-block; transition: transform var(--av-dur-fast) var(--av-ease-out); }
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* =============================================================
   ACTO I — APERTURA / HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--av-navy);
  color: var(--av-fg-inv);
  padding: 140px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-orb {
  position: absolute;
  width: 920px; height: 920px;
  right: -260px; top: -180px;
  background-image: url("assets/orb-spectrum.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(36px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-2 {
  position: absolute;
  width: 520px; height: 520px;
  left: -180px; bottom: -120px;
  background-image: url("assets/orb-teal.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(48px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 40px) scale(1.06); }
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  padding-top: 36px;
  padding-bottom: 80px;
  align-items: end;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--av-font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-fg-inv-2);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--av-yellow);
  display: inline-block;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--av-teal);
  border-radius: 50%;
  animation: blink 1.8s infinite ease-in-out;
  display: inline-block;
}
@keyframes blink { 50% { opacity: 0.25; } }

.hero-title {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.2vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--av-paper);
}
.hero-title .brk {
  color: var(--av-electric);
  font-family: var(--av-font-voltage);
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(-0.04em);
}
.hero-title .word-imborrables {
  color: var(--av-yellow);
  position: relative;
  display: inline-block;
}
.hero-title .word-imborrables::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.14em;
  background: var(--av-yellow);
  opacity: 0.18;
  transform: skewX(-12deg);
}
.hero-title .word-digital {
  position: relative;
  display: inline-block;
}
.hero-title .word-digital::before {
  content: attr(data-text);
  position: absolute; left: 1px; top: 0;
  color: var(--av-electric);
  mix-blend-mode: screen;
  opacity: 0.55;
  clip-path: inset(0 0 55% 0);
  animation: glitch-shift 4s steps(1) infinite;
  pointer-events: none;
}
.hero-title .word-digital::after {
  content: attr(data-text);
  position: absolute; left: -1px; top: 0;
  color: var(--av-coral);
  mix-blend-mode: screen;
  opacity: 0.45;
  clip-path: inset(55% 0 0 0);
  animation: glitch-shift 4s steps(1) infinite reverse;
  pointer-events: none;
}
@keyframes glitch-shift {
  0%, 92%, 100% { transform: translate(0, 0); }
  93% { transform: translate(2px, -1px); }
  95% { transform: translate(-2px, 1px); }
  97% { transform: translate(1px, 1px); }
}

.hero-lede {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.55;
  color: var(--av-fg-inv-2);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-lede strong {
  color: var(--av-paper);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  font-family: var(--av-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--av-dur-fast) var(--av-ease-out),
              background var(--av-dur-fast) var(--av-ease-out),
              color var(--av-dur-fast) var(--av-ease-out),
              border-color var(--av-dur-fast) var(--av-ease-out);
}
.btn--primary {
  background: var(--av-yellow);
  color: var(--av-navy);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255, 183, 0, 0.35); }
.btn--ghost-light {
  background: transparent;
  color: var(--av-paper);
  border-color: rgba(255,255,255,0.22);
}
.btn--ghost-light:hover { border-color: var(--av-paper); }
.btn--ghost {
  background: transparent;
  color: var(--av-navy);
  border-color: var(--av-navy);
}
.btn--ghost:hover { background: var(--av-navy); color: var(--av-paper); }
.btn .arrow {
  display: inline-block;
  transition: transform var(--av-dur-fast) var(--av-ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Hero right column — backstage ticket */
.hero-aside {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  padding: 28px;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-aside-corner {
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--av-yellow);
}
.hero-aside-corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-aside-corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.hero-aside-corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.hero-aside-corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.hero-aside-eyebrow {
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-yellow);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.hero-aside-eyebrow::before {
  content: "[";
  color: var(--av-fg-inv-2);
}
.hero-aside-eyebrow::after {
  content: "]";
  color: var(--av-fg-inv-2);
  margin-right: auto;
}
.hero-aside-title {
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 20px;
  color: var(--av-paper);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {
  background: var(--av-navy);
  padding: 18px 16px;
}
.hero-stat-num {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--av-paper);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.hero-stat-num .brk-sm {
  font-family: var(--av-font-voltage);
  color: var(--av-electric);
  font-size: 1.4rem;
}
.hero-stat-label {
  font-family: var(--av-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
  margin-top: 10px;
  line-height: 1.4;
}
.hero-aside-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 14px 0 4px;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--av-yellow);
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: color var(--av-dur-fast) var(--av-ease-out);
}
.hero-aside-cta:hover { color: var(--av-paper); }
.hero-aside-cta .arrow {
  transition: transform var(--av-dur-fast) var(--av-ease-out);
  display: inline-block;
}
.hero-aside-cta:hover .arrow { transform: translateX(4px); }

/* Hero ticker (bottom marquee inside hero) */
.hero-foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: 14px 0;
  align-items: center;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--av-fg-inv-2);
}
.hero-foot-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-foot-pill .led {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--av-teal);
  box-shadow: 0 0 8px var(--av-teal);
}
.hero-foot-center {
  text-align: center;
  padding-inline: 18px;
  color: var(--av-fg-inv-3);
}
.hero-foot-right {
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,0.1);
  color: var(--av-fg-inv-3);
}
.hero-foot-right span {
  color: var(--av-paper);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 8px; }
  .hero { padding-top: 110px; }
  .hero-foot { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .hero-foot-pill, .hero-foot-right { border: 0; padding: 0; }
}

/* =============================================================
   MARQUEE — services parade
   ============================================================= */
.marquee {
  position: relative;
  background: var(--av-navy);
  color: var(--av-paper);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
  padding: 22px 0;
  gap: 56px;
  font-family: var(--av-font-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee-track .div-tag { color: var(--av-yellow); }
.marquee-track .div-tag.media { color: var(--av-electric); }
.marquee-track .div-tag.next { color: var(--av-teal); }
.marquee-track .brk-sep { color: rgba(255,255,255,0.35); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* =============================================================
   SECTION CHROME — scene markers
   ============================================================= */
.scene {
  position: relative;
}
.scene-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(36px, 4vw, 56px);
}
.scene-head .scene-meta {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-fg-3);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}
.scene-head .scene-meta .scene-num {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  color: var(--av-navy);
  line-height: 1;
}
.scene-head .scene-meta .scene-num .brk-mark {
  font-family: var(--av-font-voltage);
  color: var(--av-electric);
  font-size: 1.6rem;
  display: inline-block;
  transform: translateY(-3px);
  margin-inline: 2px;
}
.scene-head .scene-meta-row {
  display: flex; align-items: center; gap: 10px;
  color: var(--av-fg-3);
}
.scene-head .scene-meta-row::before {
  content: ""; width: 20px; height: 1px; background: currentColor; opacity: 0.5;
}
.scene-title {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  margin: 0;
  color: var(--av-navy);
}
.scene-title .accent { color: var(--av-coral); }
.scene-title .accent-y { color: var(--av-yellow); }
.scene-title .accent-t { color: var(--av-teal); }
.scene-title .accent-e { color: var(--av-electric); }
.scene-title .brk-inline {
  font-family: var(--av-font-voltage);
  color: var(--av-electric);
}
.scene--dark .scene-title { color: var(--av-paper); }
.scene--dark .scene-head .scene-meta { color: var(--av-fg-inv-3); }
.scene--dark .scene-head .scene-meta .scene-num { color: var(--av-paper); }

@media (max-width: 768px) {
  .scene-head { grid-template-columns: 1fr; gap: 18px; }
}

/* =============================================================
   ACTO II — MANIFESTO / EL PARTNER
   ============================================================= */
.acto-manifesto {
  background: var(--av-bone);
  position: relative;
  overflow: hidden;
}
.acto-manifesto-orb {
  position: absolute;
  width: 720px; height: 720px;
  right: -200px; top: 40px;
  background-image: url("assets/orb-sunrise.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.manifesto-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 96px);
  padding-bottom: clamp(64px, 8vw, 120px);
  align-items: start;
}
.manifesto-stage {
  position: relative;
}
.manifesto-stage-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--av-navy);
  overflow: hidden;
}
.manifesto-stage-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.manifesto-stage-tag {
  position: absolute;
  left: 16px; top: 16px;
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--av-paper);
  background: rgba(9,49,96,0.7);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
}
.manifesto-stage-tag.bl { top: auto; left: 16px; bottom: 16px; }
.manifesto-stage-caption {
  margin-top: 18px;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-fg-3);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--av-line);
  padding-top: 12px;
}

.manifesto-copy h3 {
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-transform: none;
  color: var(--av-navy);
}
.manifesto-copy p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--av-fg-2);
  margin: 0 0 18px;
}
.manifesto-copy p strong {
  color: var(--av-navy);
  font-weight: 600;
}

.manifesto-equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  margin: 36px 0 0;
  align-items: center;
}
.eq-term {
  border: 1px solid var(--av-line);
  background: var(--av-paper);
  padding: 18px 16px;
  text-align: center;
}
.eq-term .eq-tag {
  font-family: var(--av-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-fg-3);
  margin-bottom: 8px;
}
.eq-term .eq-word {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--av-navy);
  line-height: 1;
}
.eq-term:nth-child(1) .eq-word { color: var(--av-navy); }
.eq-term:nth-child(3) .eq-word { color: var(--av-electric); }
.eq-term:nth-child(5) .eq-word { color: var(--av-teal); }
.eq-op {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--av-coral);
  text-align: center;
}

.manifesto-quote {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--av-line);
  background: var(--av-paper);
  position: relative;
}
.manifesto-quote::before {
  content: "[";
  position: absolute;
  top: 6px; left: 14px;
  font-family: var(--av-font-voltage);
  font-size: 1.4rem;
  color: var(--av-coral);
}
.manifesto-quote::after {
  content: "]";
  position: absolute;
  bottom: 6px; right: 14px;
  font-family: var(--av-font-voltage);
  font-size: 1.4rem;
  color: var(--av-coral);
}
.manifesto-quote p {
  font-family: var(--av-font-display);
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--av-navy);
  margin: 0;
}
.manifesto-quote cite {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--av-fg-3);
}
.manifesto-quote cite::before { content: "—"; }

@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-equation { grid-template-columns: 1fr; }
  .eq-op { transform: rotate(90deg); }
}

/* =============================================================
   ACTO III — DIVISIONES
   ============================================================= */
.acto-divisiones {
  background: var(--av-paper);
  position: relative;
  padding-bottom: clamp(64px, 8vw, 120px);
}
.div-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--av-line);
}
.div-row {
  border-bottom: 1px solid var(--av-line);
  display: grid;
  grid-template-columns: 96px minmax(0, 0.95fr) minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 32px;
  padding: 28px 0;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: background var(--av-dur-base) var(--av-ease-out);
}
.div-row::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--av-navy);
  transition: width var(--av-dur-base) var(--av-ease-out);
}
.div-row:hover { background: var(--av-bone); }
.div-row:hover::after { width: 100%; }
.div-row.brand:hover::after { background: var(--av-yellow); }
.div-row.media:hover::after { background: var(--av-electric); }
.div-row.next:hover::after { background: var(--av-teal); }
.div-row-num {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--av-fg-3);
  align-self: start;
  padding-top: 6px;
}
.div-row-name {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.div-row-name .div-handle {
  font-family: var(--av-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.div-row-name .div-handle .dot {
  width: 8px; height: 8px;
}
.div-row-name h3 {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--av-navy);
}
.div-row.brand .div-handle .dot { background: var(--av-yellow); }
.div-row.media .div-handle .dot { background: var(--av-electric); }
.div-row.next .div-handle .dot { background: var(--av-teal); }
.div-row.brand .div-handle { color: var(--av-yellow); }
.div-row.media .div-handle { color: var(--av-electric); }
.div-row.next .div-handle { color: var(--av-teal); }

.div-row-desc {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--av-fg-2);
  max-width: 480px;
}
.div-row-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
}
.div-svc {
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--av-fg-2);
  padding: 6px 10px;
  border: 1px solid var(--av-line);
  white-space: nowrap;
  transition: border-color var(--av-dur-fast) var(--av-ease-out),
              color var(--av-dur-fast) var(--av-ease-out);
}
.div-row.brand .div-svc:hover { color: var(--av-yellow); border-color: var(--av-yellow); }
.div-row.media .div-svc:hover { color: var(--av-electric); border-color: var(--av-electric); }
.div-row.next .div-svc:hover { color: var(--av-teal); border-color: var(--av-teal); }

.div-row-arrow {
  align-self: center;
  font-size: 1.1rem;
  font-family: var(--av-font-mono);
  color: var(--av-fg-3);
  transition: color var(--av-dur-fast) var(--av-ease-out),
              transform var(--av-dur-fast) var(--av-ease-out);
}
.div-row:hover .div-row-arrow { color: var(--av-navy); transform: translateX(6px); }

/* Division reveal panel (peeking image) */
.div-row-img {
  display: none;
}

@media (max-width: 1100px) {
  .div-row { grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.1fr); }
  .div-row-services { grid-column: 2 / -1; justify-content: flex-start; margin-top: 8px; }
}
@media (max-width: 700px) {
  .div-row { grid-template-columns: 1fr; }
}

/* Triptych of large division images */
.div-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
}
.div-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--av-navy);
}
.div-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform var(--av-dur-slow) var(--av-ease-out);
}
.div-tile:hover img { transform: scale(1.04); }
.div-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--av-paper);
  background: linear-gradient(to bottom, rgba(9,49,96,0.0) 30%, rgba(9,49,96,0.85) 100%);
}
.div-tile-tag {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
  padding: 6px 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.div-tile.brand .div-tile-tag { color: var(--av-yellow); }
.div-tile.media .div-tile-tag { color: var(--av-electric); }
.div-tile.next .div-tile-tag { color: var(--av-teal); }
.div-tile-title {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0;
}

@media (max-width: 900px) {
  .div-triptych { grid-template-columns: 1fr; }
}

/* =============================================================
   ACTO IV — ACTUACIONES (tabs)
   ============================================================= */
.acto-actuaciones {
  background: var(--av-navy);
  color: var(--av-fg-inv);
  position: relative;
  overflow: hidden;
}
.acto-actuaciones-orb {
  position: absolute;
  width: 700px; height: 700px;
  right: -200px; bottom: -180px;
  background-image: url("assets/orb-coral.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(64px);
  opacity: 0.35;
  pointer-events: none;
}
.acto-actuaciones .scene-head { padding-bottom: 36px; }

.tab-bar {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--av-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.tab-bar button {
  flex: 1;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 22px 24px;
  color: var(--av-fg-inv-2);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  transition: color var(--av-dur-fast) var(--av-ease-out),
              background var(--av-dur-fast) var(--av-ease-out);
}
.tab-bar button:last-child { border-right: 0; }
.tab-bar button:hover { color: var(--av-paper); }
.tab-bar button.is-active {
  color: var(--av-paper);
  background: rgba(255,255,255,0.04);
}
.tab-bar button.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--av-yellow);
}
.tab-bar .tab-num {
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--av-fg-inv-3);
}

.tab-panels {
  position: relative;
  padding-bottom: clamp(64px, 8vw, 120px);
}
.tab-panel {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  padding-top: 56px;
  align-items: start;
  animation: panel-in 480ms var(--av-ease-out);
}
.tab-panel.is-active { display: grid; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--av-ink-dim);
  border: 1px solid rgba(255,255,255,0.08);
}
.tab-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tab-media-meta {
  position: absolute;
  left: 16px; bottom: 16px; right: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.tab-media-marker {
  position: absolute;
  top: 16px; left: 16px;
  width: 12px; height: 12px;
  border: 1px solid var(--av-yellow);
}
.tab-media-marker::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--av-yellow);
  animation: blink 1.4s ease-in-out infinite;
}

.tab-content {
  display: flex; flex-direction: column;
}
.tab-content .tab-tag {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
  margin-bottom: 14px;
}
.tab-content h3 {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--av-paper);
  margin: 0 0 20px;
}
.tab-content h3 .accent { color: var(--av-yellow); }
.tab-content p.lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--av-fg-inv-2);
  margin: 0 0 24px;
}
.tab-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.tab-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: baseline;
}
.tab-list li .li-num {
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--av-fg-inv-3);
}
.tab-list li .li-text {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--av-paper);
}
.tab-list li .li-tag {
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
  white-space: nowrap;
}
.tab-cta {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .tab-panel { grid-template-columns: 1fr; }
  .tab-bar button { padding: 16px 14px; gap: 8px; font-size: 11px; }
}

/* =============================================================
   ACTO V — PROGRAMA DE MANO (Recorre la obra)
   ============================================================= */
.acto-programa {
  background: var(--av-bone);
  position: relative;
}
.programa-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--av-line);
  padding-bottom: clamp(64px, 8vw, 120px);
}
.prog-row {
  display: grid;
  grid-template-columns: 96px 132px minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--av-line);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background var(--av-dur-base) var(--av-ease-out);
}
.prog-row:hover { background: rgba(9,49,96,0.04); }
.prog-row-num {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  color: var(--av-navy);
  line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
}
.prog-row-num .brk-sm {
  font-family: var(--av-font-voltage);
  font-size: 1.5rem;
  color: var(--av-electric);
}
.prog-row-thumb {
  width: 132px;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--av-navy);
}
.prog-row-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--av-dur-slow) var(--av-ease-out);
}
.prog-row:hover .prog-row-thumb img { transform: scale(1.06); }
.prog-row-title h3 {
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--av-navy);
  line-height: 1;
}
.prog-row-title p {
  margin: 0;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-fg-3);
}
.prog-row-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--av-fg-2);
}
.prog-row-arrow {
  width: 56px; height: 56px;
  border: 1px solid var(--av-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--av-font-mono);
  font-size: 16px;
  color: var(--av-navy);
  transition: background var(--av-dur-fast) var(--av-ease-out),
              color var(--av-dur-fast) var(--av-ease-out),
              border-color var(--av-dur-fast) var(--av-ease-out);
}
.prog-row:hover .prog-row-arrow {
  background: var(--av-navy);
  color: var(--av-paper);
  border-color: var(--av-navy);
}

@media (max-width: 1000px) {
  .prog-row { grid-template-columns: 64px 96px 1fr auto; }
  .prog-row-desc { display: none; }
}
@media (max-width: 600px) {
  .prog-row { grid-template-columns: 48px 1fr auto; }
  .prog-row-thumb { display: none; }
}

/* =============================================================
   ACTO VI — TELÓN / CONTACT
   ============================================================= */
.acto-telon {
  background: var(--av-navy);
  color: var(--av-fg-inv);
  position: relative;
  overflow: hidden;
}
.telon-curtain {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 107, 126, 0.0) 0,
      rgba(255, 107, 126, 0.0) 28px,
      rgba(255, 107, 126, 0.18) 28px,
      rgba(255, 107, 126, 0.18) 56px
    );
  opacity: 0.5;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.telon-orb {
  position: absolute;
  width: 800px; height: 800px;
  left: -200px; bottom: -260px;
  background-image: url("assets/orb-yellow.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.telon-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(64px, 8vw, 120px);
  align-items: start;
}
.telon-left .telon-eyebrow {
  font-family: var(--av-font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-yellow);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.telon-left .telon-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--av-yellow);
}
.telon-title {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--av-paper);
}
.telon-title .accent { color: var(--av-yellow); }
.telon-title .brk { font-family: var(--av-font-voltage); color: var(--av-electric); }
.telon-sub {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--av-fg-inv-2);
  max-width: 520px;
  margin: 0 0 28px;
}
.telon-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.telon-chip {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-fg-inv-2);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.22);
}
.telon-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  margin-top: 32px;
  max-width: 520px;
}
.telon-meta dt {
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
  margin-bottom: 4px;
}
.telon-meta dd {
  margin: 0;
  font-family: var(--av-font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--av-paper);
}

/* Form */
.telon-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 32px;
  position: relative;
}
.telon-form-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--av-yellow);
}
.telon-form-corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.telon-form-corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.telon-form-corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.telon-form-corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.telon-form-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
  margin-bottom: 24px;
}
.telon-form-head .ok {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--av-teal);
}
.telon-form-head .ok::before {
  content: ""; width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--av-teal);
  box-shadow: 0 0 8px var(--av-teal);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 10px 0;
  font-family: var(--av-font-display);
  font-size: 1.05rem;
  color: var(--av-paper);
  outline: none;
  transition: border-color var(--av-dur-fast) var(--av-ease-out);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--av-yellow);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field-pillgroup {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pill-radio {
  position: relative;
}
.pill-radio input {
  position: absolute;
  opacity: 0; pointer-events: none;
}
.pill-radio label {
  display: inline-block;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--av-fg-inv-2);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: all var(--av-dur-fast) var(--av-ease-out);
  margin: 0;
}
.pill-radio input:checked + label {
  background: var(--av-yellow);
  color: var(--av-navy);
  border-color: var(--av-yellow);
}
.telon-form .btn--primary {
  margin-top: 12px;
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .telon-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--av-navy);
  color: var(--av-fg-inv-2);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 56px 0 32px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
  width: 180px;
  display: block;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--av-fg-inv-2);
  margin: 0 0 18px;
  max-width: 320px;
}
.footer-loc {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
}
.footer-col h4 {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--av-yellow);
  margin: 0 0 18px;
  text-transform: none;
  font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--av-fg-inv-2);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--av-dur-fast) var(--av-ease-out);
}
.footer-col a:hover { color: var(--av-paper); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
}
.footer-bottom a { color: var(--av-fg-inv-3); text-decoration: none; }
.footer-bottom a:hover { color: var(--av-paper); }
.footer-bottom .legal { display: flex; gap: 22px; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =============================================================
   IN-VIEW ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--av-ease-out),
              transform 700ms var(--av-ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .hero-orb, .hero-orb-2 { animation: none !important; }
}


/* =============================================================
   ============================================================
   V2 OVERRIDES & NEW COMPONENTS (May 2026)
   - Hides legacy hilo conductor + nav-links
   - Adds hamburger + fullscreen overlay menu
   - Hero puppet panel (right side, blue)
   - Stats strip (horizontal below hero)
   - Leit motiv teaser card
   - Obras anteriores grid
   - Brand companion floating element (full-page)
   - Leit Motiv page (.page--leit)
   ============================================================
   ============================================================= */

/* ---------- KILL LEGACY ---------- */
.hilo { display: none !important; }
.nav-links { display: none !important; }
.hero-aside { display: none !important; }
.nav-cta { display: none !important; }

/* ---------- BRAND COMPANION ----------
   A soft rainbow AV mark that drifts down the page as a fixed
   element. Sits BEHIND content (z-index 0) so it never blocks
   clicks. Position is set by JS to a slow vertical trail.
*/
.brand-companion {
  position: fixed;
  top: 50%;
  left: -120px;
  width: 320px;
  height: 320px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: normal;
  filter: blur(2px);
  transform: translate(0, -50%);
  will-change: transform;
  transition: opacity var(--av-dur-slow) var(--av-ease-out);
  animation: bc-float 14s ease-in-out infinite alternate;
}
.brand-companion img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: bc-spin 60s linear infinite;
}
@keyframes bc-float {
  0%   { transform: translate(0, -50%) scale(1); }
  100% { transform: translate(40px, -50%) scale(1.08); }
}
@keyframes bc-spin {
  to { transform: rotate(360deg); }
}
.brand-companion.is-dim { opacity: 0.25; }
.brand-companion.is-vivid { opacity: 0.85; }

@media (max-width: 900px) {
  .brand-companion { width: 220px; height: 220px; left: -100px; opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-companion { animation: none; }
  .brand-companion img { animation: none; }
}

/* ---------- NAV ---------- */
.nav {
  z-index: 80;
}
.nav--solid {
  background: rgba(9, 49, 96, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mark--light .nav-mark-name { color: var(--av-paper); }
.nav-mark--light .nav-mark-name span { color: var(--av-fg-inv-3); }

/* hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--av-paper);
  padding: 10px 16px;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--av-dur-fast) var(--av-ease-out),
              border-color var(--av-dur-fast) var(--av-ease-out),
              color var(--av-dur-fast) var(--av-ease-out);
}
.nav-toggle:hover {
  background: var(--av-yellow);
  color: var(--av-navy);
  border-color: var(--av-yellow);
}
.nav-toggle-icon {
  position: relative;
  width: 22px; height: 14px;
  display: inline-block;
}
.nav-toggle-icon span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  transition: transform var(--av-dur-base) var(--av-ease-out),
              top var(--av-dur-base) var(--av-ease-out);
}
.nav-toggle-icon span:nth-child(1) { top: 2px; }
.nav-toggle-icon span:nth-child(2) { top: 10px; }
.nav-toggle-icon--x span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle-icon--x span:nth-child(2) { top: 6px; transform: rotate(-45deg); }

/* ---------- FULLSCREEN OVERLAY MENU ---------- */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 480ms var(--av-ease-out),
              visibility 0s linear 480ms;
  color: var(--av-paper);
  display: flex;
  flex-direction: column;
}
.overlay-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.overlay-menu-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, #0e3f7a 0%, var(--av-navy) 55%, #061d3b 100%);
  z-index: 0;
}
.overlay-menu-bg::before,
.overlay-menu-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.overlay-menu-bg::before {
  width: 600px; height: 600px;
  background-image: url("assets/orb-coral.png");
  background-size: contain; background-repeat: no-repeat;
  top: -200px; right: -120px;
  opacity: 0.45;
  animation: omb-drift1 18s ease-in-out infinite alternate;
}
.overlay-menu-bg::after {
  width: 520px; height: 520px;
  background-image: url("assets/orb-teal.png");
  background-size: contain; background-repeat: no-repeat;
  bottom: -180px; left: -120px;
  opacity: 0.5;
  animation: omb-drift2 22s ease-in-out infinite alternate-reverse;
}
@keyframes omb-drift1 {
  to { transform: translate(-60px, 40px) scale(1.1); }
}
@keyframes omb-drift2 {
  to { transform: translate(60px, -40px) scale(1.08); }
}

.overlay-menu-head {
  position: relative;
  z-index: 4;
  padding: 18px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.overlay-menu-head .nav-toggle {
  background: rgba(255,255,255,0.06);
}

.overlay-menu-nav {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(20px, 4vw, 56px);
}
.overlay-menu-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  max-width: 1100px;
  counter-reset: ovi;
}
.overlay-menu-nav li {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.overlay-menu-nav li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.overlay-menu-nav a {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 28px;
  align-items: baseline;
  padding: clamp(20px, 3vw, 32px) 8px;
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--av-paper);
  text-decoration: none;
  position: relative;
  transition: color var(--av-dur-base) var(--av-ease-out),
              padding-left var(--av-dur-base) var(--av-ease-out);
}
.overlay-menu-nav a::before {
  content: attr(data-num);
  font-family: var(--av-font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 400;
  color: var(--av-fg-inv-3);
  align-self: center;
}
.overlay-menu-nav a .ov-text {
  position: relative;
}
.overlay-menu-nav a .ov-text::after {
  content: "";
  position: absolute;
  left: -8px; right: -8px; bottom: 0.05em;
  height: 0.16em;
  background: var(--av-yellow);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity var(--av-dur-base) var(--av-ease-out),
              transform var(--av-dur-base) var(--av-ease-out);
}
.overlay-menu-nav a .ov-tag {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
  align-self: center;
}
.overlay-menu-nav a::after {
  content: "→";
  font-family: var(--av-font-display);
  font-size: 1.2rem;
  color: var(--av-fg-inv-3);
  align-self: center;
  transform: translateX(-12px);
  opacity: 0;
  transition: transform var(--av-dur-base) var(--av-ease-out),
              opacity var(--av-dur-base) var(--av-ease-out),
              color var(--av-dur-base) var(--av-ease-out);
}
.overlay-menu-nav a:hover {
  color: var(--av-yellow);
  padding-left: 28px;
}
.overlay-menu-nav a:hover .ov-text::after {
  opacity: 0.3;
  transform: scaleX(1);
}
.overlay-menu-nav a:hover::after {
  transform: translateX(0);
  opacity: 1;
  color: var(--av-yellow);
}
.overlay-menu-nav a.is-current {
  color: var(--av-yellow);
}
.overlay-menu-nav a.is-current::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--av-yellow);
}

/* stagger entry on open */
.overlay-menu li { opacity: 0; transform: translateY(20px); transition: opacity 500ms var(--av-ease-out), transform 500ms var(--av-ease-out); }
.overlay-menu.is-open li { opacity: 1; transform: translateY(0); }
.overlay-menu.is-open li:nth-child(1) { transition-delay: 120ms; }
.overlay-menu.is-open li:nth-child(2) { transition-delay: 180ms; }
.overlay-menu.is-open li:nth-child(3) { transition-delay: 240ms; }
.overlay-menu.is-open li:nth-child(4) { transition-delay: 300ms; }
.overlay-menu.is-open li:nth-child(5) { transition-delay: 360ms; }

.overlay-menu-foot {
  position: relative;
  z-index: 3;
  padding: 22px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.overlay-menu-foot .omf-led {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--av-teal);
  box-shadow: 0 0 8px var(--av-teal);
  display: inline-block;
  margin-right: 8px;
}
.overlay-menu-foot a {
  color: var(--av-paper);
  text-decoration: none;
  margin-left: auto;
}
.overlay-menu-foot a:hover { color: var(--av-yellow); }

/* giant decorative AV mark behind menu */
.overlay-menu-decor {
  position: absolute;
  z-index: 1;
  right: -8%;
  bottom: -18%;
  width: 70vmin;
  height: 70vmin;
  pointer-events: none;
  opacity: 0.4;
  transform: rotate(-8deg);
  animation: omd-spin 80s linear infinite;
}
.overlay-menu-decor img {
  width: 100%; height: 100%;
  object-fit: contain;
}
@keyframes omd-spin { to { transform: rotate(352deg); } }

@media (max-width: 700px) {
  .overlay-menu-nav a { grid-template-columns: 40px 1fr auto; }
  .overlay-menu-nav a .ov-tag { display: none; }
  .overlay-menu-decor { opacity: 0.2; }
}

/* prevent body scroll when overlay open */
body.menu-open { overflow: hidden; }

/* ---------- HERO PUPPET PANEL (right side of hero) ---------- */
.hero-grid--puppet {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 64px);
}
.hero-puppet {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 12px;
}
.hero-puppet-frame {
  position: relative;
  background:
    linear-gradient(180deg, rgba(9, 49, 96, 0.0) 0%, rgba(9, 49, 96, 0.55) 100%),
    radial-gradient(ellipse at 30% 30%, #1656a3 0%, #0a3d80 50%, #061d3b 100%);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  isolation: isolate;
}
.hero-puppet-frame::before {
  /* subtle grid texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mix-blend-mode: overlay;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.hero-puppet-frame::after {
  /* soft glow */
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at 50% 30%, rgba(106, 209, 255, 0.25) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero-puppet-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center top;
  margin-top: -8%;
  mix-blend-mode: lighten;
  filter: contrast(1.05) saturate(0.9);
  will-change: transform;
}
.hero-puppet-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--av-yellow);
  z-index: 5;
}
.hero-puppet-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero-puppet-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hero-puppet-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hero-puppet-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero-puppet-cap {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--av-fg-inv-2);
}
.hero-puppet-cap .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--av-teal);
  box-shadow: 0 0 8px var(--av-teal);
  display: inline-block;
}
.hero-puppet-cap span:last-child {
  margin-left: auto;
  color: var(--av-fg-inv-3);
}

@media (max-width: 900px) {
  .hero-grid--puppet { grid-template-columns: 1fr; }
  .hero-puppet-frame { aspect-ratio: 16 / 11; }
}

/* ---------- STATS STRIP (horizontal below hero) ---------- */
.stats-strip {
  background: var(--av-paper);
  border-top: 1px solid var(--av-line);
  border-bottom: 1px solid var(--av-line);
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  padding: 28px 0;
  align-items: center;
}
.stats-eyebrow {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-fg-3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.stats-eyebrow .led {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--av-coral);
  box-shadow: 0 0 8px var(--av-coral);
  display: inline-block;
  animation: blink 1.8s infinite ease-in-out;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--av-line);
}
.stat {
  padding: 4px 24px;
  border-right: 1px solid var(--av-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background var(--av-dur-fast) var(--av-ease-out);
}
.stat:hover { background: var(--av-bone); }
.stat-num {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--av-navy);
  display: flex; align-items: baseline; gap: 6px;
}
.stat-num .brk-sm {
  font-family: var(--av-font-voltage);
  color: var(--av-electric);
  font-size: 1.4rem;
}
.stat-label {
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-fg-3);
  line-height: 1.4;
}
.stats-cta {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--av-navy);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 24px;
  border-left: 1px solid var(--av-line);
  transition: color var(--av-dur-fast) var(--av-ease-out);
}
.stats-cta:hover { color: var(--av-coral); }
.stats-cta .arrow { display: inline-block; transition: transform var(--av-dur-fast) var(--av-ease-out); }
.stats-cta:hover .arrow { transform: translateX(4px); }

@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-row { border-left: 0; }
  .stats-cta { padding-left: 0; border-left: 0; justify-content: space-between; }
}
@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--av-line); padding-bottom: 18px; margin-bottom: 18px; }
  .stat:nth-child(4) { border-right: 0; }
  .stat { padding: 4px 16px; }
}

/* ---------- LEIT TEASER (home → leit motiv page) ---------- */
.leit-teaser {
  background: var(--av-bone);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}
.leit-teaser-orb {
  position: absolute;
  width: 720px; height: 720px;
  right: -200px; top: -120px;
  background-image: url("assets/orb-sunrise.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.leit-teaser-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 28px 0;
  border-top: 1px solid var(--av-line);
  border-bottom: 1px solid var(--av-line);
  transition: padding var(--av-dur-base) var(--av-ease-out);
}
.leit-teaser-card:hover {
  padding: 36px 0;
}
.leit-teaser-meta {
  position: absolute;
  top: -1px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--av-fg-3);
  transform: translateY(-100%);
  padding-block: 12px;
}
.leit-teaser-meta .leit-foot {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--av-coral);
}
.leit-teaser-meta .leit-foot .arrow {
  display: inline-block;
  transition: transform var(--av-dur-fast) var(--av-ease-out);
}
.leit-teaser-card:hover .leit-foot .arrow { transform: translateX(6px); }

.leit-teaser-title {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  margin: 0;
  color: var(--av-navy);
}
.leit-teaser-title .accent { color: var(--av-coral); }
.leit-teaser-title .brk { font-family: var(--av-font-voltage); color: var(--av-electric); }
.leit-teaser-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--av-navy);
  overflow: hidden;
}
.leit-teaser-img img {
  position: absolute;
  inset: -8% 0 -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform var(--av-dur-slow) var(--av-ease-out);
}
.leit-teaser-card:hover .leit-teaser-img img { transform: scale(1.04); }

@media (max-width: 900px) {
  .leit-teaser-card { grid-template-columns: 1fr; }
  .leit-teaser-meta { position: static; transform: none; padding: 0 0 16px; }
}

/* ---------- OBRAS ANTERIORES ---------- */
.acto-obras { background: var(--av-paper); padding-bottom: clamp(64px, 8vw, 120px); }
.obras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.obra-card {
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--av-line);
  background: var(--av-paper);
  overflow: hidden;
  transition: transform var(--av-dur-base) var(--av-ease-out),
              border-color var(--av-dur-base) var(--av-ease-out),
              box-shadow var(--av-dur-base) var(--av-ease-out);
}
.obra-card:hover {
  border-color: var(--av-navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(9, 49, 96, 0.12);
}
.obra-card-img {
  position: relative;
  overflow: hidden;
  background: var(--av-navy);
  aspect-ratio: 4 / 5;
}
.obra-card-img img {
  position: absolute;
  inset: -6% 0 -6% 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  transition: transform var(--av-dur-slow) var(--av-ease-out);
}
.obra-card:hover .obra-card-img img { transform: scale(1.06); }
.obra-card-info {
  padding: 24px 28px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.obra-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.obra-tag {
  padding: 6px 10px;
  border: 1px solid currentColor;
}
.obra-tag.brand { color: var(--av-yellow); border-color: var(--av-yellow); }
.obra-tag.media { color: var(--av-electric); border-color: var(--av-electric); }
.obra-tag.next  { color: var(--av-teal); border-color: var(--av-teal); }
.obra-year { color: var(--av-fg-3); }
.obra-card-title {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  color: var(--av-navy);
}
.obra-card-desc {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--av-fg-2);
}
.obras-foot {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .obras-grid { grid-template-columns: 1fr; }
  .obra-card { grid-template-columns: 1fr; }
  .obra-card-info { padding: 22px; }
}

/* =============================================================
   LEIT MOTIV PAGE (.page--leit)
   ============================================================= */
.page--leit {
  background: var(--av-navy);
  color: var(--av-fg-inv);
}
.page--leit .footer { border-top: 1px solid rgba(255,255,255,0.1); }

.leit-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.leit-hero-orb {
  position: absolute;
  width: 900px; height: 900px;
  right: -260px; top: -200px;
  background-image: url("assets/orb-spectrum.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(48px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.leit-hero-orb-2 {
  position: absolute;
  width: 560px; height: 560px;
  left: -180px; bottom: -140px;
  background-image: url("assets/orb-coral.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(54px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.leit-hero .shell { position: relative; z-index: 2; }

.leit-hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.leit-hero-crumb a {
  color: var(--av-fg-inv-2);
  text-decoration: none;
  transition: color var(--av-dur-fast) var(--av-ease-out);
}
.leit-hero-crumb a:hover { color: var(--av-yellow); }
.leit-hero-tag { color: var(--av-yellow); }

.leit-hero-title {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 36px;
  color: var(--av-paper);
  max-width: 1100px;
}
.leit-hero-title .accent-y { color: var(--av-yellow); }
.leit-hero-title .brk {
  color: var(--av-electric);
  font-family: var(--av-font-voltage);
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(-0.05em);
}
.leit-hero-title .word-digital {
  position: relative;
  display: inline-block;
}
.leit-hero-title .word-digital::before {
  content: attr(data-text);
  position: absolute; left: 1px; top: 0;
  color: var(--av-electric);
  mix-blend-mode: screen;
  opacity: 0.5;
  clip-path: inset(0 0 55% 0);
  animation: glitch-shift 5s steps(1) infinite;
  pointer-events: none;
}
.leit-hero-title .word-digital::after {
  content: attr(data-text);
  position: absolute; left: -1px; top: 0;
  color: var(--av-coral);
  mix-blend-mode: screen;
  opacity: 0.45;
  clip-path: inset(55% 0 0 0);
  animation: glitch-shift 5s steps(1) infinite reverse;
  pointer-events: none;
}
.leit-hero-intro {
  font-family: var(--av-font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1.4;
  font-weight: 500;
  color: var(--av-paper);
  margin: 0 0 56px;
  max-width: 640px;
}
.leit-hero-intro .muted { color: var(--av-fg-inv-3); font-weight: 400; }

.leit-hero-puppet {
  position: relative;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 49, 96, 0.0) 0%, rgba(9, 49, 96, 0.55) 100%),
    radial-gradient(ellipse at 30% 30%, #1656a3 0%, #0a3d80 50%, #061d3b 100%);
  margin-top: 18px;
}
.leit-hero-puppet::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}
.leit-hero-puppet img {
  position: absolute;
  inset: -8% 0 0;
  width: 100%; height: 116%;
  object-fit: cover;
  mix-blend-mode: lighten;
  filter: contrast(1.05) saturate(0.85);
  will-change: transform;
}

/* ---------- LEIT BODY ---------- */
.leit-body {
  background: var(--av-bone);
  color: var(--av-fg);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.leit-body .shell {
  max-width: 940px;
}
.leit-stanza {
  position: relative;
  padding: 36px 0;
  border-bottom: 1px solid var(--av-line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
.leit-stanza:first-child { padding-top: 0; }
.leit-stanza-mark {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-coral);
  align-self: start;
  padding-top: 6px;
  white-space: nowrap;
}
.leit-stanza-text {
  font-family: var(--av-font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  color: var(--av-navy);
  letter-spacing: -0.005em;
}
.leit-stanza-text strong { color: var(--av-navy); font-weight: 700; }
.leit-stanza-text em { font-style: italic; color: var(--av-coral); }
.leit-stanza-text .accent { color: var(--av-coral); }
.leit-stanza-text .accent-t { color: var(--av-teal); }
.leit-stanza-text .accent-e { color: var(--av-electric); }
.leit-stanza--big .leit-stanza-text {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-family: var(--av-font-display);
  font-weight: 700;
  line-height: 1.25;
}

.leit-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 36px 0;
  font-family: var(--av-font-voltage);
  color: var(--av-electric);
  font-size: 1.4rem;
}
.leit-divider span:first-child,
.leit-divider span:last-child {
  height: 1px;
  background: var(--av-line);
}

.leit-final {
  text-align: left;
  padding: 36px 0 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
.leit-final .leit-stanza-mark { color: var(--av-yellow); padding-top: 6px; }
.leit-final-text {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--av-navy);
}
.leit-final-text .accent-y { color: var(--av-yellow); position: relative; display: inline-block; }
.leit-final-text .accent-y::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 0.16em;
  background: var(--av-yellow);
  opacity: 0.22;
  transform: skewX(-12deg);
}
.leit-final-sub {
  font-family: var(--av-font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--av-fg-2);
}
.leit-final-sub strong { color: var(--av-navy); font-weight: 700; }
.leit-final-cta-line {
  font-family: var(--av-font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-coral);
  margin: 0 0 28px;
}

@media (max-width: 700px) {
  .leit-stanza { grid-template-columns: 1fr; gap: 12px; }
  .leit-final  { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- LEIT JUMPS ---------- */
.leit-jumps {
  background: var(--av-navy);
  padding: clamp(64px, 8vw, 120px) 0;
}
.leit-jumps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.jump-card {
  background: var(--av-navy);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--av-paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background var(--av-dur-base) var(--av-ease-out);
  min-height: 220px;
}
.jump-card:hover { background: rgba(255,255,255,0.04); }
.jump-card--cta { background: var(--av-yellow); color: var(--av-navy); }
.jump-card--cta:hover { background: #ffc933; }
.jump-num {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
}
.jump-card--cta .jump-num { color: rgba(9,49,96,0.6); }
.jump-card h3 {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.jump-card p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--av-fg-inv-2);
  margin: 0;
  flex: 1;
}
.jump-card--cta p { color: rgba(9,49,96,0.8); }
.jump-arrow {
  font-family: var(--av-font-display);
  font-size: 1.4rem;
  align-self: flex-end;
  transition: transform var(--av-dur-fast) var(--av-ease-out);
}
.jump-card:hover .jump-arrow { transform: translateX(6px); }

@media (max-width: 800px) {
  .leit-jumps-grid { grid-template-columns: 1fr; }
}

/* ---------- BUTTON GHOST on light bg ---------- */
.btn--ghost {
  background: transparent;
  color: var(--av-navy);
  border-color: var(--av-navy);
}
.btn--ghost:hover { background: var(--av-navy); color: var(--av-paper); }


/* =============================================================
   ============================================================
   V3 — Hero video variant + tremoring bracket + Actuaciones page
   ============================================================
   ============================================================= */

/* ---------- Hide legacy brand-companion (replaced by bracket) ---------- */
.brand-companion { display: none !important; }

/* ---------- FLOATING [...] BRACKET ----------
   Sits fixed on every page, lower-right by default.
   At rest: still. Tremors briefly every ~5–8s.
*/
.brand-bracket {
  position: fixed;
  bottom: clamp(40px, 8vh, 80px);
  right: clamp(20px, 4vw, 56px);
  z-index: 5;
  pointer-events: none;
  font-family: var(--av-font-voltage);
  color: var(--av-yellow);
  font-size: clamp(72px, 9vw, 130px);
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  user-select: none;
  text-shadow: 0 0 18px rgba(255, 183, 0, 0.18);
  filter: drop-shadow(0 6px 24px rgba(255, 183, 0, 0.18));
  display: flex;
  align-items: center;
  gap: 0.04em;
  opacity: 0.85;
  animation: bracket-tremor 8s ease-in-out infinite;
  will-change: transform, filter;
  mix-blend-mode: normal;
}
/* On dark pages (navy bg) the bracket should glow more on yellow */
.page--leit .brand-bracket,
.hero--video ~ .brand-bracket,
body.menu-open .brand-bracket { color: var(--av-yellow); }

/* On bone/paper pages, switch to coral so it doesn't get lost */
.page--actuaciones .brand-bracket { color: var(--av-coral); text-shadow: 0 0 18px rgba(255, 114, 118, 0.2); filter: drop-shadow(0 6px 24px rgba(255, 114, 118, 0.18)); }

/* Each part can wobble independently */
.brand-bracket-l,
.brand-bracket-r {
  display: inline-block;
}
.brand-bracket-dots {
  display: inline-block;
  margin-inline: 0.02em;
  font-size: 0.6em;
  transform: translateY(-0.05em);
  letter-spacing: -0.08em;
}

@keyframes bracket-tremor {
  /* mostly still, brief tremor at ~70% of cycle */
  0%, 65%, 80%, 100% { transform: translate(0, 0) rotate(0deg); filter: drop-shadow(0 6px 24px rgba(255, 183, 0, 0.18)); }
  68% { transform: translate(-2px, 1px) rotate(-1deg); }
  70% { transform: translate(2px, -1px) rotate(1deg); filter: drop-shadow(0 6px 30px rgba(255, 183, 0, 0.35)); }
  72% { transform: translate(-3px, 2px) rotate(-1.5deg); }
  74% { transform: translate(3px, -1px) rotate(1deg); }
  76% { transform: translate(-1px, 1px) rotate(-0.5deg); }
  78% { transform: translate(1px, 0) rotate(0.5deg); }
}

/* a second, more violent tremor variant — JS adds class for extra punctuation */
.brand-bracket.is-shaking {
  animation: bracket-tremor-hard 600ms cubic-bezier(.36,.07,.19,.97);
}
@keyframes bracket-tremor-hard {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  10%  { transform: translate(-4px, 2px) rotate(-2deg); }
  20%  { transform: translate(4px, -2px) rotate(2deg); }
  30%  { transform: translate(-5px, 3px) rotate(-3deg); }
  40%  { transform: translate(5px, -2px) rotate(2deg); }
  50%  { transform: translate(-3px, 1px) rotate(-1deg); }
  60%  { transform: translate(3px, -1px) rotate(1deg); }
  70%  { transform: translate(-2px, 1px) rotate(-1deg); }
  80%  { transform: translate(2px, 0) rotate(0.5deg); }
  90%  { transform: translate(-1px, 0) rotate(0deg); }
}

@media (max-width: 700px) {
  .brand-bracket { font-size: 56px; bottom: 24px; right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-bracket { animation: none; }
}

/* ---------- HERO version-toggle (small link under CTAs) ---------- */
.hero-version-toggle {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-version-link {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--av-fg-inv-3);
  text-decoration: none;
  transition: color var(--av-dur-fast) var(--av-ease-out);
}
.hero-version-link:hover { color: var(--av-yellow); }

/* ---------- HERO VIDEO VARIANT ---------- */
.hero--video {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero--video .hero-grid--video {
  position: relative;
  z-index: 3;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: calc(100vh - 220px);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Tint the hand cyan/white using filters */
  filter: brightness(1.05) contrast(1.1) saturate(0.2) hue-rotate(180deg);
  mix-blend-mode: screen;
}
.hero-video-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(15, 146, 178, 0.0) 0%, rgba(9, 49, 96, 0.55) 50%, rgba(9, 49, 96, 0.88) 100%),
    linear-gradient(90deg, rgba(9, 49, 96, 0.95) 0%, rgba(9, 49, 96, 0.55) 45%, rgba(9, 49, 96, 0.25) 100%);
  pointer-events: none;
}
.hero-video-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}
.hero-video-side {
  position: relative;
}
.hero-video-tag {
  position: absolute;
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-paper);
  background: rgba(9, 49, 96, 0.6);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-video-tag.tl { top: 0; right: 0; color: var(--av-coral); }
.hero-video-tag.br { bottom: 0; right: 0; color: var(--av-yellow); }
.hero-video-tag .led {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--av-coral);
  box-shadow: 0 0 8px var(--av-coral);
  animation: blink 1.4s infinite ease-in-out;
}

@media (max-width: 900px) {
  .hero--video .hero-grid--video { grid-template-columns: 1fr; }
  .hero-video-side { display: none; }
}

/* =============================================================
   ACTUACIONES PAGE (.page--actuaciones)
   ============================================================= */
.page--actuaciones {
  background: var(--av-bone);
  color: var(--av-fg);
}

/* Light nav variant */
.nav--light {
  background: rgba(245, 242, 237, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(9, 49, 96, 0.08);
}
.nav-mark-name--dark { color: var(--av-navy) !important; }
.nav-mark-name--dark span { color: var(--av-fg-3) !important; }
.nav-toggle--dark {
  color: var(--av-navy);
  border-color: rgba(9, 49, 96, 0.22);
}
.nav-toggle--dark:hover {
  background: var(--av-navy);
  color: var(--av-paper);
  border-color: var(--av-navy);
}

/* ACT HERO */
.act-hero {
  position: relative;
  padding: 160px 0 56px;
  overflow: hidden;
  border-bottom: 3px solid var(--av-navy);
}
.act-hero-orb {
  position: absolute;
  width: 700px; height: 700px;
  right: -200px; top: -120px;
  background-image: url("assets/orb-sunrise.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(64px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.act-hero .shell { position: relative; z-index: 2; }
.act-hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-fg-3);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--av-line);
}
.act-hero-crumb a {
  color: var(--av-fg-2);
  text-decoration: none;
  transition: color var(--av-dur-fast) var(--av-ease-out);
}
.act-hero-crumb a:hover { color: var(--av-navy); }
.act-hero-tag { color: var(--av-coral); }
.act-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
.act-hero-title {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--av-navy);
}
.act-hero-title em {
  font-style: normal;
  color: var(--av-yellow);
  position: relative;
  display: inline-block;
}
.act-hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.16em;
  background: var(--av-yellow);
  opacity: 0.22;
  transform: skewX(-12deg);
}
.act-hero-aside {
  padding-bottom: 12px;
}
.act-hero-claim {
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.3;
  color: var(--av-navy);
  margin: 0 0 14px;
}
.act-hero-claim strong { color: var(--av-coral); }
.act-hero-sub {
  font-family: var(--av-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  line-height: 1.85;
  color: var(--av-fg-2);
  max-width: 420px;
  margin: 0;
}

@media (max-width: 900px) {
  .act-hero-grid { grid-template-columns: 1fr; }
}

/* ACT TICKER */
.act-ticker {
  background: var(--av-navy);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 0;
}
.act-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 30s linear infinite;
  font-family: var(--av-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.act-ticker-track span { color: rgba(255, 255, 255, 0.55); white-space: nowrap; }
.act-tk-div { color: var(--av-yellow) !important; font-weight: 700; }
.act-tk-div.media { color: var(--av-electric) !important; }
.act-tk-div.next  { color: var(--av-teal) !important; }
.act-tk-div.ai    { color: var(--av-coral) !important; }
.act-tk-sep { color: rgba(255, 255, 255, 0.25) !important; }

/* ACT CARDS 2x2 */
.act-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 3px;
  background: var(--av-navy);
}
.act-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--av-navy);
}
.act-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms var(--av-ease-out), filter 400ms var(--av-ease-out);
  filter: grayscale(20%) contrast(1.05);
}
.act-card:hover .act-card__img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.1);
}
.act-card__grad {
  position: absolute; inset: 0;
}
.act-card--brand .act-card__grad {
  background: linear-gradient(160deg, rgba(255, 183, 0, 0.22) 0%, rgba(15, 146, 178, 0.28) 40%, rgba(9, 49, 96, 0.94) 100%);
}
.act-card--next .act-card__grad {
  background: linear-gradient(160deg, rgba(15, 146, 178, 0.28) 0%, rgba(0, 180, 151, 0.3) 40%, rgba(9, 49, 96, 0.94) 100%);
}
.act-card--media .act-card__grad {
  background: linear-gradient(160deg, rgba(0, 180, 151, 0.2) 0%, rgba(9, 49, 96, 0.5) 40%, rgba(9, 49, 96, 0.96) 100%);
}
.act-card--ai .act-card__grad {
  background: linear-gradient(160deg, rgba(255, 114, 118, 0.26) 0%, rgba(9, 49, 96, 0.55) 40%, rgba(9, 49, 96, 0.96) 100%);
}
.act-card__body {
  position: relative;
  z-index: 2;
  padding: 38px 34px;
}
.act-card__tag {
  display: inline-block;
  font-family: var(--av-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 5px 11px;
  margin-bottom: 16px;
  font-weight: 700;
}
.act-card--brand .act-card__tag { background: var(--av-yellow); color: var(--av-navy); }
.act-card--next  .act-card__tag { background: var(--av-teal); color: var(--av-paper); }
.act-card--media .act-card__tag { background: #00B497; color: var(--av-paper); }
.act-card--ai    .act-card__tag { background: var(--av-coral); color: var(--av-paper); }
.act-card__title {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--av-paper);
  margin: 0 0 14px;
}
.act-card__hook {
  font-family: var(--av-font-mono);
  font-size: 11.5px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  max-width: 360px;
  margin: 0;
}
.act-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.act-card__pill {
  font-family: var(--av-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
}
.act-card__num {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 3;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
}
.act-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  transition: width 500ms var(--av-ease-out);
  z-index: 3;
}
.act-card--brand::after { background: var(--av-yellow); }
.act-card--next::after  { background: var(--av-teal); }
.act-card--media::after { background: #00B497; }
.act-card--ai::after    { background: var(--av-coral); }
.act-card:hover::after { width: 100%; }

@media (max-width: 900px) {
  .act-cards { grid-template-columns: 1fr; }
  .act-card { min-height: 440px; }
}

/* ACT PRISMA */
.act-prisma {
  background: var(--av-navy);
  color: var(--av-fg-inv);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.act-prisma-orb {
  position: absolute;
  width: 720px; height: 720px;
  left: -260px; bottom: -200px;
  background-image: url("assets/orb-teal.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.act-prisma .shell { position: relative; z-index: 2; }
.act-prisma-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.act-prisma-eyebrow {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-teal);
  margin: 0 0 22px;
}
.act-prisma-title {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--av-paper);
}
.act-prisma-title em {
  font-style: normal;
  color: var(--av-yellow);
  display: block;
}
.act-prisma-quote {
  font-family: var(--av-font-mono);
  font-size: 12px;
  font-style: italic;
  line-height: 1.75;
  color: var(--av-fg-inv-3);
  margin: 0;
  border-left: 2px solid var(--av-yellow);
  padding-left: 18px;
  max-width: 420px;
}
.act-prisma-items {
  display: flex;
  flex-direction: column;
}
.act-prisma-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.act-prisma-item:last-child { border-bottom: none; }
.act-prisma-n {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}
.act-prisma-item--brand .act-prisma-n { color: var(--av-yellow); }
.act-prisma-item--next  .act-prisma-n { color: var(--av-teal); }
.act-prisma-item--media .act-prisma-n { color: #00B497; }
.act-prisma-item--ai    .act-prisma-n { color: var(--av-coral); }
.act-prisma-label {
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--av-paper);
  margin-bottom: 4px;
}
.act-prisma-desc {
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--av-fg-inv-3);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .act-prisma-grid { grid-template-columns: 1fr; }
}

/* ACT FORMATS */
.act-formats {
  background: var(--av-bone);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 3px solid var(--av-navy);
}
.act-formats-title {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--av-navy);
}
.act-formats-title em {
  font-style: normal;
  color: var(--av-teal);
}
.act-formats-sub {
  font-family: var(--av-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--av-fg-2);
  max-width: 540px;
  margin: 0 0 44px;
  line-height: 1.7;
}
.act-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--av-line);
  border: 1px solid var(--av-line);
}
.act-format {
  background: var(--av-navy);
  color: var(--av-fg-inv);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 300ms var(--av-ease-out),
              transform 300ms var(--av-ease-out);
  position: relative;
  cursor: pointer;
}
.act-format:hover {
  border-color: var(--av-yellow);
  transform: translateY(-2px);
}
.act-format-num {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: 60px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}
.act-format-title {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--av-paper);
  margin: 0 0 12px;
}
.act-format-desc {
  font-family: var(--av-font-mono);
  font-size: 11px;
  color: var(--av-fg-inv-3);
  line-height: 1.85;
  margin: 0;
}
.act-format-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}
.act-format-tag {
  font-family: var(--av-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-yellow);
}
.act-format-arrow {
  color: var(--av-fg-inv-3);
  transition: color var(--av-dur-fast) var(--av-ease-out),
              transform var(--av-dur-fast) var(--av-ease-out);
}
.act-format:hover .act-format-arrow {
  color: var(--av-yellow);
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .act-formats-grid { grid-template-columns: 1fr; gap: 1px; }
}

/* ACT CTA */
.act-cta {
  background: var(--av-navy);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}
.act-cta-orb {
  position: absolute;
  width: 700px; height: 700px;
  right: -200px; top: -120px;
  background-image: url("assets/orb-yellow.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.act-cta .shell { position: relative; z-index: 2; }
.act-cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.act-cta-text {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--av-paper);
  margin: 0;
}
.act-cta-text em {
  font-style: normal;
  color: var(--av-yellow);
}

/* Big button */
.btn--xl {
  padding: 22px 36px;
  font-size: 13px;
  letter-spacing: 0.2em;
}



/* =============================================================
   ============================================================
   V4 — OBRAS ANTERIORES PAGE (page--obras)
   Grid + filters + side modal
   ============================================================
   ============================================================= */
.page--obras {
  background: var(--av-paper);
  color: var(--av-fg);
}

/* HERO */
.obr-hero {
  position: relative;
  padding: 160px 0 56px;
  overflow: hidden;
  border-bottom: 3px solid var(--av-navy);
}
.obr-hero-orb {
  position: absolute;
  width: 720px; height: 720px;
  right: -240px; top: -160px;
  background-image: url("assets/orb-coral.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(64px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.obr-hero .shell { position: relative; z-index: 2; }
.obr-hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-fg-3);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--av-line);
}
.obr-hero-crumb a {
  color: var(--av-fg-2);
  text-decoration: none;
  transition: color var(--av-dur-fast) var(--av-ease-out);
}
.obr-hero-crumb a:hover { color: var(--av-navy); }
.obr-hero-tag { color: var(--av-coral); }
.obr-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
.obr-hero-title {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
  color: var(--av-navy);
}
.obr-hero-title em {
  font-style: normal;
  color: var(--av-coral);
  position: relative;
  display: inline-block;
}
.obr-hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.16em;
  background: var(--av-coral);
  opacity: 0.22;
  transform: skewX(-12deg);
}
.obr-hero-aside { padding-bottom: 10px; }
.obr-hero-claim {
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.3;
  color: var(--av-navy);
  margin: 0 0 14px;
}
.obr-hero-sub {
  font-family: var(--av-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  line-height: 1.85;
  color: var(--av-fg-2);
  max-width: 420px;
  margin: 0;
}

@media (max-width: 900px) {
  .obr-hero-grid { grid-template-columns: 1fr; }
}

/* FILTERS BAR */
.obr-filters-bar {
  position: sticky;
  top: 73px;
  background: rgba(245, 242, 237, 0.94);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  z-index: 50;
  border-bottom: 1px solid var(--av-line);
}
.obr-filters {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.obr-filters-label {
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-fg-3);
  flex-shrink: 0;
}
.obr-fbtns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.obr-fbtn {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 14px;
  border: 1.5px solid rgba(9, 49, 96, 0.18);
  background: transparent;
  color: var(--av-fg-2);
  cursor: pointer;
  transition: all 200ms var(--av-ease-out);
}
.obr-fbtn:hover {
  border-color: var(--av-navy);
  color: var(--av-navy);
}
.obr-fbtn.is-active {
  background: var(--av-navy);
  color: var(--av-yellow);
  border-color: var(--av-navy);
}
.obr-filters-count {
  margin-left: auto;
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--av-fg-3);
  white-space: nowrap;
}

/* GRID */
.obr-grid-wrap {
  background: var(--av-navy);
  padding: 0;
}
.obr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 3px;
}
.obr-card {
  position: relative;
  overflow: hidden;
  background: var(--av-navy);
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: opacity 320ms var(--av-ease-out);
  border: 0;
  text-align: left;
  color: inherit;
  display: block;
}
.obr-card.is-hidden { display: none; }
.obr-card.is-fading {
  opacity: 0.25;
  pointer-events: none;
}
.obr-card--wide { grid-column: span 2; aspect-ratio: 16/9; }
.obr-card--tall { grid-row: span 2; aspect-ratio: auto; min-height: 520px; }

.obr-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 620ms var(--av-ease-out),
              filter 420ms var(--av-ease-out);
  filter: grayscale(15%) contrast(1.05);
}
.obr-card:hover .obr-card-img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.08);
}
.obr-card-grad {
  position: absolute; inset: 0;
}
.obr-card[data-div="brand"] .obr-card-grad {
  background: linear-gradient(to top, rgba(9, 49, 96, 0.94) 0%, rgba(255, 183, 0, 0.18) 55%, transparent 100%);
}
.obr-card[data-div="next"] .obr-card-grad {
  background: linear-gradient(to top, rgba(9, 49, 96, 0.94) 0%, rgba(15, 146, 178, 0.22) 55%, transparent 100%);
}
.obr-card[data-div="media"] .obr-card-grad {
  background: linear-gradient(to top, rgba(9, 49, 96, 0.94) 0%, rgba(0, 180, 151, 0.2) 55%, transparent 100%);
}
.obr-card-num {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 4;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
}
.obr-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--av-paper);
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
  transition: opacity 280ms var(--av-ease-out),
              transform 280ms var(--av-ease-out);
}
.obr-card:hover .obr-card-arrow {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.obr-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 22px 22px 22px;
}
.obr-card-tag {
  display: inline-block;
  font-family: var(--av-font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 9px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms var(--av-ease-out),
              transform 300ms var(--av-ease-out);
}
.obr-card[data-div="brand"] .obr-card-tag { background: var(--av-yellow); color: var(--av-navy); }
.obr-card[data-div="next"]  .obr-card-tag { background: var(--av-teal); color: var(--av-paper); }
.obr-card[data-div="media"] .obr-card-tag { background: #00B497; color: var(--av-paper); }
.obr-card:hover .obr-card-tag { opacity: 1; transform: translateY(0); }
.obr-card-name {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--av-paper);
  margin: 0 0 6px;
}
.obr-card--wide .obr-card-name { font-size: clamp(1.4rem, 2.2vw, 2rem); }
.obr-card-hook {
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms 60ms var(--av-ease-out),
              transform 360ms 60ms var(--av-ease-out);
}
.obr-card:hover .obr-card-hook {
  opacity: 1;
  transform: translateY(0);
}
.obr-card-demo-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 4;
  font-family: var(--av-font-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(15, 146, 178, 0.2);
  color: var(--av-teal);
  border: 1px solid rgba(15, 146, 178, 0.28);
}
.obr-card-demo-badge.media {
  background: rgba(0, 180, 151, 0.16);
  color: #00B497;
  border-color: rgba(0, 180, 151, 0.28);
}
.obr-card-num + .obr-card-demo-badge { top: 16px; left: 56px; }

/* DEMO BACKGROUNDS (static, non-interactive) */
.obr-card-demo-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 22px;
}
.obr-card-demo-bg--dash {
  background: linear-gradient(135deg, #0a1e38 0%, #061428 100%);
  gap: 14px;
}
.obr-demo-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.obr-demo-kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid var(--av-teal);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.obr-demo-kpi:nth-child(2) { border-top-color: var(--av-yellow); }
.obr-demo-kpi:nth-child(3) { border-top-color: #00B497; }
.obr-demo-kpi-v {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--av-paper);
  line-height: 1;
}
.obr-demo-kpi-l {
  font-family: var(--av-font-mono);
  font-size: 7.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.obr-demo-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  min-height: 60px;
}
.obr-demo-bar {
  flex: 1;
  height: var(--h);
  background: var(--c);
  opacity: 0.7;
  animation: bar-rise 1.4s var(--av-ease-out) backwards;
  transform-origin: bottom;
}
.obr-demo-bar:nth-child(1) { animation-delay: 0.1s; }
.obr-demo-bar:nth-child(2) { animation-delay: 0.2s; }
.obr-demo-bar:nth-child(3) { animation-delay: 0.3s; }
.obr-demo-bar:nth-child(4) { animation-delay: 0.4s; }
.obr-demo-bar:nth-child(5) { animation-delay: 0.5s; }
.obr-demo-bar:nth-child(6) { animation-delay: 0.6s; }
@keyframes bar-rise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.obr-card-demo-bg--ocr {
  background: linear-gradient(135deg, #0a1e1a 0%, #061428 100%);
  justify-content: center;
}
.obr-demo-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.obr-demo-flow li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 180, 151, 0.22);
}
.obr-demo-flow-n {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0, 180, 151, 0.14);
  color: #00B497;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--av-font-mono);
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.obr-demo-flow-t {
  font-family: var(--av-font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.obr-card-demo-bg--3d {
  background:
    radial-gradient(ellipse at 35% 40%, rgba(15, 146, 178, 0.36), transparent 60%),
    linear-gradient(135deg, #041428, #0a1f38);
  align-items: center;
  justify-content: center;
}
.obr-demo-orb {
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  animation: float-soft 6s ease-in-out infinite alternate;
}
.obr-demo-orb-i {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.obr-demo-orb-i::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 183, 0, 0.6), transparent 70%);
}
@keyframes float-soft {
  to { transform: translateY(-8px); }
}

.obr-card-demo-bg--agents {
  background: linear-gradient(135deg, #0e1428 0%, #061020 100%);
  align-items: center;
  justify-content: center;
}
.obr-demo-agents {
  position: relative;
  width: 100%;
  height: 100%;
}
.obr-demo-ag {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 44px; height: 44px;
  border: 1.5px solid var(--c);
  background: color-mix(in oklab, var(--c) 12%, transparent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  animation: ag-float 5s ease-in-out infinite;
}
.obr-demo-ag:nth-child(2) { animation-delay: 1.2s; }
.obr-demo-ag:nth-child(3) { animation-delay: 2.4s; }
.obr-demo-ag:nth-child(4) { animation-delay: 3.6s; }
@keyframes ag-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1100px) {
  .obr-grid { grid-template-columns: repeat(2, 1fr); }
  .obr-card--wide { grid-column: span 2; }
  .obr-card--tall { grid-row: auto; min-height: auto; aspect-ratio: 4/5; }
}
@media (max-width: 600px) {
  .obr-grid { grid-template-columns: 1fr; }
  .obr-card,
  .obr-card--wide,
  .obr-card--tall { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; min-height: auto; }
}

/* CTA */
.obr-cta {
  background: var(--av-navy);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}
.obr-cta-orb {
  position: absolute;
  width: 720px; height: 720px;
  left: -240px; top: -120px;
  background-image: url("assets/orb-coral.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(64px);
  opacity: 0.45;
  pointer-events: none;
}
.obr-cta .shell { position: relative; z-index: 2; }
.obr-cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.obr-cta-text {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--av-paper);
  margin: 0;
}
.obr-cta-text em {
  font-style: normal;
  color: var(--av-coral);
}

/* =============================================================
   OBRAS MODAL — slides in from right
   ============================================================= */
.obr-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 360ms var(--av-ease-out),
              visibility 0s linear 360ms;
}
.obr-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.obr-modal-veil {
  position: absolute;
  inset: 0;
  background: rgba(4, 22, 50, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.obr-modal-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(600px, 100%);
  background: var(--av-paper);
  color: var(--av-fg);
  overflow-y: auto;
  transform: translateX(40px);
  opacity: 0;
  transition: transform 380ms var(--av-ease-out),
              opacity 380ms var(--av-ease-out);
  box-shadow: -20px 0 60px rgba(4, 22, 50, 0.18);
  display: flex;
  flex-direction: column;
}
.obr-modal.is-open .obr-modal-panel {
  transform: translateX(0);
  opacity: 1;
}
.obr-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(9, 49, 96, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--av-paper);
  font-size: 22px;
  cursor: pointer;
  transition: background var(--av-dur-fast) var(--av-ease-out),
              color var(--av-dur-fast) var(--av-ease-out);
}
.obr-modal-close:hover {
  background: var(--av-yellow);
  color: var(--av-navy);
}
.obr-modal-vis {
  position: relative;
  height: 280px;
  background: var(--av-navy);
  overflow: hidden;
  flex-shrink: 0;
}
.obr-modal-vis img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.obr-modal-vis-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9, 49, 96, 0.92) 0%, rgba(9, 49, 96, 0.2) 50%, transparent 100%);
}
.obr-modal-vis-bottom {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
}
.obr-modal-tag {
  display: inline-block;
  font-family: var(--av-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 11px;
  margin-bottom: 10px;
  background: var(--av-yellow);
  color: var(--av-navy);
}
.obr-modal-name {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--av-paper);
  margin: 0;
}
.obr-modal-head {
  padding: 32px 32px 20px;
  border-bottom: 1px solid var(--av-line);
}
.obr-modal-kicker {
  display: block;
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--av-coral);
  margin-bottom: 12px;
}
.obr-modal-title {
  font-family: var(--av-font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--av-navy);
}
.obr-modal-body {
  padding: 0 32px;
  flex: 1;
}
.obr-modal-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--av-line);
}
.obr-modal-block:last-child { border-bottom: none; }
.obr-modal-q {
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--av-coral);
  margin-bottom: 10px;
}
.obr-modal-a {
  font-family: var(--av-font-mono);
  font-size: 12.5px;
  color: var(--av-fg-2);
  line-height: 1.85;
  margin: 0;
}
.obr-modal-result {
  margin: 0 32px 28px;
  background: var(--av-navy);
  padding: 20px 22px;
  border-left: 3px solid var(--av-yellow);
}
.obr-modal-result-label {
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--av-yellow);
  margin-bottom: 10px;
}
.obr-modal-result p {
  font-family: var(--av-font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
}
.obr-modal-foot {
  padding: 0 32px 32px;
}

@media (max-width: 700px) {
  .obr-modal-panel { width: 100%; }
  .obr-modal-vis { height: 220px; }
}


/* =============================================================
   ============================================================
   V5 — CONTACTO page (page--contacto)
   Full-bleed spectrum gradient. Form without box.
   ============================================================
   ============================================================= */

.page--contacto {
  background: #f6efe1;  /* warm bone fallback */
  color: var(--av-navy);
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Full-bleed gradient backdrop (spectrum) */
.contacto-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 30%, #ffd84d 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, #ff8a6c 0%, transparent 50%),
    radial-gradient(ellipse at 65% 80%, #6ad7c2 0%, transparent 50%),
    radial-gradient(ellipse at 30% 90%, #ff6b7e 0%, transparent 60%),
    linear-gradient(180deg, #fdf2c8 0%, #fbe4d6 100%);
}
.contacto-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  mix-blend-mode: multiply;
  opacity: 0.55;
  will-change: transform;
}
.contacto-bg-orb.a {
  width: 60vmin; height: 60vmin;
  top: -15%; left: -10%;
  background: radial-gradient(circle, var(--av-electric) 0%, transparent 70%);
  animation: cbg-a 22s ease-in-out infinite alternate;
}
.contacto-bg-orb.b {
  width: 50vmin; height: 50vmin;
  top: 30%; right: -10%;
  background: radial-gradient(circle, var(--av-coral) 0%, transparent 70%);
  animation: cbg-b 28s ease-in-out infinite alternate;
}
.contacto-bg-orb.c {
  width: 56vmin; height: 56vmin;
  bottom: -10%; left: 30%;
  background: radial-gradient(circle, var(--av-teal) 0%, transparent 70%);
  animation: cbg-c 32s ease-in-out infinite alternate;
}
@keyframes cbg-a {
  to { transform: translate(8vw, 6vh) scale(1.1); }
}
@keyframes cbg-b {
  to { transform: translate(-10vw, -4vh) scale(1.15); }
}
@keyframes cbg-c {
  to { transform: translate(6vw, -8vh) scale(0.95); }
}

/* Subtle grain texture over gradient */
.contacto-bg-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.04) 0.5px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Transparent ghost nav for this page */
.nav--ghost {
  background: transparent;
  border-bottom: none;
}
.nav--ghost.is-stuck {
  background: rgba(253, 242, 200, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

/* MAIN CONTAINER */
.contacto {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  min-height: calc(100vh - 60px);
}
.contacto-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-navy);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(9, 49, 96, 0.18);
  margin-bottom: 48px;
}
.contacto-crumb a {
  color: var(--av-navy);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity var(--av-dur-fast) var(--av-ease-out);
}
.contacto-crumb a:hover { opacity: 1; }
.contacto-tag { color: var(--av-navy); opacity: 0.6; }

.contacto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

/* LEFT */
.contacto-title {
  font-family: var(--av-font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7.2vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: none;
  margin: 0 0 40px;
  color: var(--av-navy);
}
.contacto-title em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--av-navy);
}
.contacto-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.16em;
  background: var(--av-paper);
  opacity: 0.85;
  transform: skewX(-12deg);
  z-index: -1;
}

.contacto-questions {
  font-family: var(--av-font-mono);
  font-size: 13px;
  line-height: 1.95;
  color: var(--av-navy);
  margin: 0 0 28px;
}
.contacto-questions p {
  margin: 0 0 6px;
}

.contacto-final {
  font-family: var(--av-font-mono);
  font-size: 13px;
  line-height: 1.95;
  color: var(--av-navy);
  margin: 0 0 48px;
  max-width: 440px;
}
.contacto-final strong {
  font-weight: 700;
  background: var(--av-paper);
  padding: 2px 8px;
}

.contacto-meta-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin: 0 0 36px;
  border-top: 1px solid rgba(9, 49, 96, 0.2);
  padding-top: 28px;
  max-width: 440px;
}
.contacto-meta-list dt {
  font-family: var(--av-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-navy);
  opacity: 0.6;
  margin-bottom: 4px;
}
.contacto-meta-list dd {
  margin: 0;
  font-family: var(--av-font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--av-navy);
}
.contacto-meta-list dd a {
  color: var(--av-navy);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity var(--av-dur-fast) var(--av-ease-out);
}
.contacto-meta-list dd a:hover { opacity: 0.7; }

.contacto-socials {
  display: flex;
  gap: 14px;
}
.contacto-socials a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--av-navy);
  color: var(--av-navy);
  text-decoration: none;
  transition: background var(--av-dur-fast) var(--av-ease-out),
              color var(--av-dur-fast) var(--av-ease-out);
}
.contacto-socials a:hover {
  background: var(--av-navy);
  color: var(--av-paper);
}

/* RIGHT — FORM (no card, no box, just underlined fields) */
.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}
.contacto-form-tag {
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--av-navy);
  opacity: 0.65;
  margin-bottom: 8px;
}
.cf-field {
  position: relative;
}
.cf-field label {
  display: block;
  font-family: var(--av-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--av-navy);
  margin-bottom: 14px;
}
.cf-field input,
.cf-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(9, 49, 96, 0.4);
  padding: 6px 0 12px;
  font-family: var(--av-font-display);
  font-size: 1.1rem;
  color: var(--av-navy);
  outline: none;
  transition: border-color var(--av-dur-fast) var(--av-ease-out);
}
.cf-field textarea { resize: vertical; }
.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(9, 49, 96, 0.35);
  font-family: var(--av-font-mono);
  font-size: 0.95rem;
}
.cf-field input:focus,
.cf-field textarea:focus {
  border-bottom-color: var(--av-navy);
  border-bottom-width: 2px;
}

.cf-pillgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.cf-pill {
  position: relative;
}
.cf-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cf-pill label {
  display: inline-block;
  font-family: var(--av-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--av-navy);
  padding: 9px 14px;
  border: 1.5px solid rgba(9, 49, 96, 0.4);
  cursor: pointer;
  margin: 0;
  background: transparent;
  transition: all var(--av-dur-fast) var(--av-ease-out);
}
.cf-pill input:checked + label {
  background: var(--av-navy);
  color: var(--av-paper);
  border-color: var(--av-navy);
}

.cf-submit {
  margin-top: 12px;
  background: var(--av-navy);
  color: var(--av-paper);
  border: 0;
  padding: 22px 28px;
  font-family: var(--av-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 380px;
  transition: background var(--av-dur-fast) var(--av-ease-out),
              transform var(--av-dur-fast) var(--av-ease-out);
}
.cf-submit:hover {
  background: var(--av-coral);
  transform: translateY(-1px);
}
.cf-submit .arrow {
  display: inline-block;
  transition: transform var(--av-dur-fast) var(--av-ease-out);
}
.cf-submit:hover .arrow { transform: translateX(4px); }

.cf-foot {
  font-family: var(--av-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--av-navy);
  opacity: 0.6;
  margin: 4px 0 0;
}
.cf-foot a {
  color: var(--av-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* SUCCESS state */
.cf-submit.is-success {
  background: var(--av-teal);
}

/* FOOTER */
.contacto-footer {
  position: relative;
  z-index: 2;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(9, 49, 96, 0.18);
  background: transparent;
}
.contacto-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--av-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--av-navy);
  opacity: 0.75;
}
.contacto-footer-row a {
  color: var(--av-navy);
  text-decoration: none;
}
.contacto-footer-row a:hover { text-decoration: underline; }
.contacto-footer-row .legal {
  display: flex;
  gap: 22px;
}

/* Bracket override on this colorful page → navy ink */
.page--contacto .brand-bracket {
  color: var(--av-navy);
  text-shadow: 0 0 22px rgba(9, 49, 96, 0.12);
  filter: drop-shadow(0 6px 24px rgba(9, 49, 96, 0.12));
  opacity: 0.7;
}

@media (max-width: 900px) {
  .contacto-grid { grid-template-columns: 1fr; gap: 48px; }
  .contacto-meta-list { grid-template-columns: 1fr; max-width: 100%; }
}


/* =============================================================
   V6 — Typography pass + footer simplification + bracket scoping
   + logo in nav + Contacto gradient adjustment + URL hrefs
   ============================================================= */

/* ---------- TYPOGRAPHY: Maven Pro for titles, Space Mono for body ---------- */
body,
p,
li,
dt, dd,
label,
input, textarea, select, button,
.hero-lede,
.act-hero-claim, .act-hero-sub,
.obr-hero-claim, .obr-hero-sub,
.scene-meta, .scene-meta-row {
  font-family: var(--av-font-mono);
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.scene-title,
.leit-teaser-title,
.act-hero-title, .act-cta-text, .act-prisma-title, .act-formats-title, .act-format-title, .act-card__title,
.obr-hero-title, .obr-cta-text, .obr-modal-title, .obr-modal-name, .obr-card-name,
.leit-hero-title, .leit-stanza-text, .leit-final-text, .leit-final-sub,
.contacto-title,
.telon-title,
.div-row-name h3, .obra-card-title,
.footer-brand p,
.act-prisma-label, .footer-col h4 {
  font-family: var(--av-font-display);
}

/* Section eyebrows, tags, captions — keep mono */
.scene-meta span,
.hero-eyebrow,
.nav-mark-name, .nav-mark-name span,
.tab-tag, .obra-card-meta, .obra-tag,
.act-card__tag, .obr-card-tag,
.cf-field label, .field label,
.footer-loc, .footer-bottom,
.act-prisma-eyebrow, .act-formats-sub,
.obr-card-num, .obr-card-hook,
.stat-label, .stat-num,
.hero-foot, .hero-foot-pill, .hero-foot-center, .hero-foot-right {
  font-family: var(--av-font-mono);
}

/* Stat numbers — keep display weight */
.stat-num,
.hero-stat-num,
.scene-num {
  font-family: var(--av-font-display);
}

/* ---------- BRACKET — hide globally, only inside overlay menu ---------- */
.brand-bracket { display: none !important; }

.overlay-menu-bracket {
  position: absolute;
  bottom: clamp(40px, 7vh, 90px);
  right: clamp(20px, 5vw, 80px);
  z-index: 4;
  font-family: var(--av-font-voltage);
  color: var(--av-yellow);
  font-size: clamp(80px, 11vw, 180px);
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.04em;
  opacity: 0.95;
  text-shadow: 0 0 24px rgba(255, 183, 0, 0.25);
  filter: drop-shadow(0 8px 30px rgba(255, 183, 0, 0.2));
  animation: bracket-tremor 8s ease-in-out infinite;
  will-change: transform, filter;
}
.overlay-menu-bracket .brand-bracket-l,
.overlay-menu-bracket .brand-bracket-r {
  display: inline-block;
}
.overlay-menu-bracket .brand-bracket-dots {
  display: inline-block;
  margin-inline: 0.02em;
  font-size: 0.6em;
  transform: translateY(-0.05em);
  letter-spacing: -0.08em;
}
.overlay-menu-bracket.is-shaking {
  animation: bracket-tremor-hard 600ms cubic-bezier(.36, .07, .19, .97);
}

/* ---------- NAV LOGO (replaces text in nav-mark) ---------- */
.nav-mark { gap: 0; }
.nav-mark img.nav-logo {
  width: auto;
  height: 28px;
  display: block;
  transition: opacity var(--av-dur-fast) var(--av-ease-out);
}
.nav-mark:hover img.nav-logo { opacity: 0.85; }

@media (max-width: 700px) {
  .nav-mark img.nav-logo { height: 24px; }
}

/* Overlay menu head — slightly bigger */
.overlay-menu-head .nav-mark img.nav-logo {
  height: 32px;
}

/* ---------- FOOTER — simplified 2-col + brand image ---------- */
.footer-top {
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) !important;
}
.footer-brand img {
  width: 220px !important;
  max-width: 80%;
  height: auto;
  margin-bottom: 0 !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 36px;
}

@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr !important; }
}

/* ---------- CONTACTO — warmer palette (brand-faithful) ---------- */
.contacto-bg {
  background:
    radial-gradient(ellipse at 20% 30%, #FFD400 0%, transparent 55%),
    radial-gradient(ellipse at 78% 25%, #FFB700 0%, transparent 45%),
    radial-gradient(ellipse at 55% 80%, #FF8E6C 0%, transparent 55%),
    radial-gradient(ellipse at 18% 75%, #FF6B7E 0%, transparent 55%),
    linear-gradient(180deg, #FFE680 0%, #FFB07A 45%, #FF8B72 100%);
}
.contacto-bg-orb.a {
  background: radial-gradient(circle, var(--av-yellow) 0%, transparent 70%);
}
.contacto-bg-orb.b {
  background: radial-gradient(circle, #FF8E6C 0%, transparent 70%);
}
.contacto-bg-orb.c {
  background: radial-gradient(circle, var(--av-coral) 0%, transparent 70%);
  bottom: -10%;
  left: 25%;
}

/* ---------- Hero version-toggle link still readable on dark hero ---------- */
.hero-version-link span { display: inline-block; }
