/* ==========================================================================
   Impresión — CANIETI Innovación Abierta
   El manual de identidad autoriza tonos de gris cuando no pueden usarse los
   colores oficiales (pág. 6). En impresión se conmuta a la versión monocroma.
   ========================================================================== */

@media print {
  @page { margin: 1.6cm; }

  :root {
    --bg: #fff;
    --bg-soft: #fff;
    --bg-alt: #fff;
    --surface: #fff;
    --text-primary: #000;
    --text-secondary: #333;
    --text-muted: #555;
    --border-subtle: #bbb;
    --border-strong: #888;
  }

  body { background: #fff !important; color: #000 !important; font-size: 11pt; line-height: 1.45; }

  .chapter--dark,
  .site-footer,
  .page-hero,
  .metric-tile--primary,
  .manifesto__cell[data-emphasis="true"] {
    background: #fff !important;
    color: #000 !important;
  }
  .chapter--dark *, .site-footer *, .page-hero * { color: #000 !important; }

  /* Fuera todo lo que no aporta en papel. */
  .site-header,
  .hero__media,
  .hero__network,
  .hero__scrim,
  .hero__scroll,
  .hero__video-toggle,
  .nav-toggle,
  .filters,
  .skip-link,
  video,
  canvas { display: none !important; }

  .hero {
    min-height: auto;
    padding: 0 0 1.5cm;
    color: #000 !important;
    background: #fff !important;
  }
  .hero__title, .hero__lead, .hero__eyebrow { color: #000 !important; }
  .hero__eyebrow { border-color: #888 !important; background: none !important; }

  /* Logotipo en versión color (el navegador lo desatura si el usuario
     imprime en escala de grises, conforme al manual). */
  .header-logo .logo--light { display: none !important; }

  a { text-decoration: underline; }
  /* Enlaces externos: mostrar el destino, ya que no se puede hacer clic. */
  main a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: .85em;
    color: #555;
    word-break: break-all;
  }
  main a[href^="#"]::after { content: ""; }

  .card, .program, .listing, .strategic-line, .form__fieldset, .accordion__item {
    border: 1px solid #bbb !important;
    box-shadow: none !important;
    break-inside: avoid;
  }

  .section { padding-block: .8cm; }
  h1, h2, h3, h4 { break-after: avoid; }
  .stage, .metric-tile, .helix__col { break-inside: avoid; }

  /* Los paneles ocultos por pestañas sí se imprimen: el papel no tiene tabs. */
  [role="tabpanel"][hidden],
  .accordion__panel[hidden] { display: block !important; }
  .journeys__list, .helix__tabs { display: none !important; }
  .helix__stage { display: block !important; }

  /* El estado institucional debe verse siempre, también impreso. */
  .chip {
    border: 1px solid #666 !important;
    background: none !important;
    color: #000 !important;
  }
  .notice { border: 1px solid #888 !important; background: none !important; }

  [data-reveal], [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
