/* La direction visuelle reste sombre, indépendamment du thème du navigateur. */
:root { color-scheme: dark; }

/* Défilement direct : aucune section ne se bloque et aucun trait n'est animé. */
.hero {
  height: auto !important;
  min-height: 100svh !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden !important;
}

.hero-scene {
  position: relative !important;
  top: auto !important;
  height: 100svh !important;
  min-height: 620px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 74px 8.5vw 11vw;
  overflow: hidden;
}

@media (max-width: 780px) {
  .nav {
    min-height: 68px;
    gap: 10px;
    padding: 0 18px;
  }

  .nav-links {
    gap: 10px;
    justify-content: flex-end;
  }

  .nav-links > a:not(.nav-action) {
    display: inline-flex;
    font-size: 9px;
    white-space: nowrap;
  }

  .nav-links > a:nth-child(2) {
    font-size: 0;
  }

  .nav-links > a:nth-child(2)::before {
    content: "Silvage ↗";
    font: 9px var(--mono);
    letter-spacing: .04em;
  }

  .hero-scene {
    min-height: 100svh !important;
    height: 100svh !important;
    grid-template-columns: 1fr;
    padding: 105px 8vw 10vw;
  }

  .hero-scene .logo-stage {
    height: 65vw;
    position: absolute;
    right: -7vw;
    bottom: 6vh;
    width: 72vw;
  }

  .hero-copy { max-width: min(100%, 390px); }
  .hero-lead { max-width: 310px; }
  .hero-index { bottom: 22px; }
  .scope-card p, .scope-head > p:last-child { font-size: 1rem; }
}
